* src/ltlvisit/reducform.cc, src/tgba/tgbareduc.cc,

src/tgbaalgos/reductgba_sim.cc, src/tgbaalgos/reductgba_sim.hh
src/tgbaalgos/reductgba_sim_del.cc, src/tgbatest/reduccmp.test,
src/tgbatest/reductgba.cc: 80 columns and style.
This commit is contained in:
martinez 2004-06-22 17:24:46 +00:00
parent f61b69ef3d
commit 2f1a67d927
8 changed files with 84 additions and 86 deletions

View file

@ -43,6 +43,8 @@ digraph G {
}
EOF
rm input stdout expected
# FIXME
exit 0
@ -50,5 +52,3 @@ exit 0
# (The order is not guaranteed by SPOT.)
sed 's/!b & a/a \& !b/g' stdout > tmp_ && mv tmp_ stdout
diff stdout expected
#rm input stdout expected

View file

@ -85,9 +85,9 @@ main(int argc, char** argv)
}
int exit_code = 0;
spot::simulation_relation* rel = NULL;
spot::tgba* automata = NULL;
spot::tgba_reduc* automatareduc = NULL;
spot::simulation_relation* rel = 0;
spot::tgba* automata = 0;
spot::tgba_reduc* automatareduc = 0;
spot::ltl::environment& env(spot::ltl::default_environment::instance());
spot::bdd_dict* dict = new spot::bdd_dict();
@ -121,7 +121,7 @@ main(int argc, char** argv)
automatareduc->quotient_state(rel);
}
if (rel != NULL)
if (rel != 0)
{
automatareduc->display_rel_sim(rel, std::cout);
spot::free_relation_simulation(rel);
@ -133,17 +133,17 @@ main(int argc, char** argv)
//automatareduc->display_scc(std::cout);
}
if (automatareduc != NULL)
if (automatareduc != 0)
{
spot::dotty_reachable(std::cout, automatareduc);
}
if (automata != NULL)
if (automata != 0)
delete automata;
if (automatareduc != NULL)
if (automatareduc != 0)
delete automatareduc;
#ifndef REDUCCMP
if (f != NULL)
if (f != 0)
spot::ltl::destroy(f);
#endif
@ -152,7 +152,7 @@ main(int argc, char** argv)
assert(spot::ltl::binop::instance_count() == 0);
assert(spot::ltl::multop::instance_count() == 0);
if (dict != NULL)
if (dict != 0)
delete dict;
return exit_code;