ltl2tgba: Set assume_sba for automata read from a neverclaim.
This cause double-circles for accepting states in dot output. * src/tgbatest/ltl2tgba.cc: Set assume_sba for automata read from neverclaims. Reset assume_sba after scc_filter and simulation. * src/tgbatest/neverclaimread.test: Expect a double circle.
This commit is contained in:
parent
e5a86290cf
commit
cb068599dc
2 changed files with 7 additions and 3 deletions
|
|
@ -826,6 +826,7 @@ main(int argc, char** argv)
|
|||
delete dict;
|
||||
return 2;
|
||||
}
|
||||
assume_sba = true;
|
||||
}
|
||||
e->merge_transitions();
|
||||
}
|
||||
|
|
@ -947,6 +948,7 @@ main(int argc, char** argv)
|
|||
tm.start("reducing A_f w/ SCC");
|
||||
aut_scc = a = spot::scc_filter(a, scc_filter_all);
|
||||
tm.stop("reducing A_f w/ SCC");
|
||||
assume_sba = false;
|
||||
}
|
||||
|
||||
const spot::tgba* degeneralized = 0;
|
||||
|
|
@ -988,6 +990,7 @@ main(int argc, char** argv)
|
|||
temp_dir_sim = spot::simulation(a);
|
||||
a = temp_dir_sim;
|
||||
tm.stop("Reduction w/ direct simulation");
|
||||
assume_sba = false;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue