* src/tgba/bddfactory.hh, src/tgba/statebdd.hh,

src/tgba/succiterconcrete.hh, src/tgba/tgbabddconcrete.hh,
src/tgba/tgbabddcoredata.hh, src/tgba/tgbabdddict.hh: Add
Doxygen comments.
This commit is contained in:
Alexandre Duret-Lutz 2003-05-27 14:42:58 +00:00
parent 236a26ad66
commit ddf05b5d47
7 changed files with 135 additions and 51 deletions

View file

@ -6,6 +6,7 @@
namespace spot
{
/// A state whose representation is a BDD.
class state_bdd: public state
{
public:
@ -14,6 +15,7 @@ namespace spot
{
}
/// Return the BDD part of the state.
bdd
as_bdd() const
{
@ -23,7 +25,7 @@ namespace spot
virtual int compare(const state* other) const;
protected:
bdd state_;
bdd state_; ///< BDD representation of the state.
};
}