* src/tgba/statebdd.hh (state_bdd::as_bdd): Add non-const variant.
* src/tgba/tgbabddtranslateproxy.cc, src/tgba/tgbabddtranslateproxy.hh: New files. * src/tgba/Makefile.am (libtgba_la_SOURCES): Add them.
This commit is contained in:
parent
4034f9a3d6
commit
331738d644
8 changed files with 226 additions and 9 deletions
|
|
@ -16,12 +16,19 @@ namespace spot
|
|||
}
|
||||
|
||||
/// Return the BDD part of the state.
|
||||
bdd
|
||||
bdd
|
||||
as_bdd() const
|
||||
{
|
||||
return state_;
|
||||
}
|
||||
|
||||
|
||||
/// Return the BDD part of the state.
|
||||
bdd&
|
||||
as_bdd()
|
||||
{
|
||||
return state_;
|
||||
}
|
||||
|
||||
virtual int compare(const state* other) const;
|
||||
|
||||
protected:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue