sanity: replace tabulars by spaces
* spot/ltsmin/ltsmin.cc, spot/mc/ec.hh, spot/mc/intersect.hh, spot/mc/reachability.hh, spot/mc/unionfind.cc, spot/mc/utils.hh, spot/twacube/cube.cc, spot/twacube/twacube.cc, spot/twacube/twacube.hh, spot/twacube_algos/convert.cc, spot/twacube_algos/convert.hh, tests/core/bricks.cc, tests/core/cube.cc, tests/core/twacube.cc, tests/ltsmin/modelcheck.cc: here.
This commit is contained in:
parent
681c2b2011
commit
f04074bd6d
15 changed files with 935 additions and 936 deletions
|
|
@ -62,10 +62,10 @@ int main()
|
|||
for (int i = 0; i < 6; i++)
|
||||
workers.
|
||||
push_back(std::thread([&ht2](int tid)
|
||||
{
|
||||
for (int i = 0; i< 2000; ++i)
|
||||
ht2.insert({i, tid});
|
||||
}, i));
|
||||
{
|
||||
for (int i = 0; i< 2000; ++i)
|
||||
ht2.insert({i, tid});
|
||||
}, i));
|
||||
|
||||
// Wait the end of all threads.
|
||||
for (auto& t: workers)
|
||||
|
|
@ -75,6 +75,6 @@ int main()
|
|||
for (unsigned i = 0; i < ht2.size(); ++ i)
|
||||
if (ht2.valid(i))
|
||||
std::cout << i << ": {"
|
||||
<< ht2[i].x << ',' << ht2[i].y << "}\n";
|
||||
<< ht2[i].x << ',' << ht2[i].y << "}\n";
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,9 +31,9 @@
|
|||
|
||||
|
||||
static bool test_translation(bdd& input, spot::cubeset& cubeset,
|
||||
std::unordered_map<int, int>& binder,
|
||||
std::unordered_map<int, int>& reverse_binder,
|
||||
std::vector<std::string>& aps)
|
||||
std::unordered_map<int, int>& binder,
|
||||
std::unordered_map<int, int>& reverse_binder,
|
||||
std::vector<std::string>& aps)
|
||||
{
|
||||
// The BDD used to detect if the convertion works
|
||||
bdd res = bddfalse;
|
||||
|
|
|
|||
|
|
@ -63,9 +63,9 @@ int main()
|
|||
auto& t = aut->trans_storage(it, seed);
|
||||
auto& d = aut->trans_data(it, seed);
|
||||
std::cout << t.src << ' ' << t.dst << ' '
|
||||
<< ' ' << aut->get_cubeset().dump(d.cube_, *aps)
|
||||
<< ' ' << d.acc_
|
||||
<< std::endl;
|
||||
<< ' ' << aut->get_cubeset().dump(d.cube_, *aps)
|
||||
<< ' ' << d.acc_
|
||||
<< std::endl;
|
||||
}
|
||||
|
||||
spot::print_dot(std::cout, spot::twacube_to_twa(aut));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue