sanity: also check the 80-column limit in bin

* tests/sanity/80columns.test: Check bin sources.
* bin/ltlsynt.cc: Fix it.
This commit is contained in:
Alexandre Duret-Lutz 2017-09-26 21:46:42 +02:00
parent c473e4ca0b
commit a2cbf0af3a
2 changed files with 6 additions and 4 deletions

View file

@ -643,8 +643,10 @@ namespace
std::cout << "REALIZABLE\n";
if (!opt_real)
{
auto strat_aut = strat_to_aut(pg, strategy, dpa, all_outputs);
auto circuit = aut_to_aiger(strat_aut, all_inputs, all_outputs);
auto strat_aut =
strat_to_aut(pg, strategy, dpa, all_outputs);
auto circuit =
aut_to_aiger(strat_aut, all_inputs, all_outputs);
circuit.print();
}
}