ltlcross: fix missing check for complement of negative automata
* src/bin/ltlcross.cc: Fix it. * src/tgbatest/ltl2dstar.test: Test it. * NEWS: Mention it.
This commit is contained in:
parent
49a0997866
commit
9a8becb8d8
3 changed files with 25 additions and 2 deletions
|
|
@ -1473,7 +1473,7 @@ namespace
|
|||
problems +=
|
||||
check_empty_prod(pos[i], comp_pos[j],
|
||||
i, j, false, true);
|
||||
if (i != j && comp_neg[i] && !comp_neg[i])
|
||||
if (i != j && comp_neg[i] && !comp_pos[i])
|
||||
problems +=
|
||||
check_empty_prod(comp_neg[i], neg[j],
|
||||
i, j, true, false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue