* src/tgba/state.hh, src/tgba/statebdd.hh, src/tgba/statebdd.cc:
Remove the translate() method. Useless since 2003-07-14.
This commit is contained in:
parent
a76344eef1
commit
519a67babc
4 changed files with 5 additions and 19 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2003-08-14 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
||||||
|
|
||||||
|
* src/tgba/state.hh, src/tgba/statebdd.hh, src/tgba/statebdd.cc:
|
||||||
|
Remove the translate() method. Useless since 2003-07-14.
|
||||||
|
|
||||||
2003-08-11 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
2003-08-11 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
||||||
|
|
||||||
* wrap/python/Makefile.am (SUBDIRS): Build `.' first.
|
* wrap/python/Makefile.am (SUBDIRS): Build `.' first.
|
||||||
|
|
|
||||||
|
|
@ -22,18 +22,6 @@ namespace spot
|
||||||
/// \sa spot::state_ptr_less_than
|
/// \sa spot::state_ptr_less_than
|
||||||
virtual int compare(const state* other) const = 0;
|
virtual int compare(const state* other) const = 0;
|
||||||
|
|
||||||
/// \brief Translate a state.
|
|
||||||
///
|
|
||||||
/// If this state uses any BDD variable. This function
|
|
||||||
/// should rewrite the variables according to \a rewrite.
|
|
||||||
/// This used by spot::tgba_translate_proxy.
|
|
||||||
virtual void translate(bddPair* rewrite)
|
|
||||||
{
|
|
||||||
// This does nothing by default and is
|
|
||||||
// overridden in spot::state_bdd.
|
|
||||||
(void) rewrite;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Duplicate a state.
|
/// Duplicate a state.
|
||||||
virtual state* clone() const = 0;
|
virtual state* clone() const = 0;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,12 +16,6 @@ namespace spot
|
||||||
return o->as_bdd().id() - state_.id();
|
return o->as_bdd().id() - state_.id();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
state_bdd::translate(bddPair* rewrite)
|
|
||||||
{
|
|
||||||
state_ = bdd_replace(state_, rewrite);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Duplicate a state.
|
/// Duplicate a state.
|
||||||
state_bdd*
|
state_bdd*
|
||||||
state_bdd::clone() const
|
state_bdd::clone() const
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,6 @@ namespace spot
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual int compare(const state* other) const;
|
virtual int compare(const state* other) const;
|
||||||
virtual void translate(bddPair* rewrite);
|
|
||||||
virtual state_bdd* clone() const;
|
virtual state_bdd* clone() const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue