Add a remove_fin() algorithm

* src/bin/autfilt.cc: Add remove_fin().
* src/tgba/acc.cc, src/tgba/acc.hh: Add is_dnf() and simplify eval().
* src/tgbaalgos/remfin.cc, src/tgbaalgos/remfin.hh: New files.
* src/tgbaalgos/Makefile.am: Add them.
* src/tgbatest/remfin.test: New file.
* src/tgbatest/Makefile.am: Add it.
This commit is contained in:
Alexandre Duret-Lutz 2015-02-24 09:10:20 +01:00
parent 1441c4fe34
commit 85508a0ea6
8 changed files with 667 additions and 24 deletions

View file

@ -556,6 +556,8 @@ namespace spot
while (pos > 0);
}
bool is_dnf() const;
acc_code to_dnf() const;
SPOT_API
@ -743,8 +745,6 @@ namespace spot
return all_;
}
bool accepting(mark_t inf, mark_t fin) const;
bool accepting(mark_t inf) const;
std::ostream& format(std::ostream& os, mark_t m) const