* src/tgba/tgbabddconcretefactory.hh (create_state):

Clarify comments.
This commit is contained in:
Alexandre Duret-Lutz 2008-02-22 09:22:19 +00:00
parent b5f4ba982c
commit cc9c08b6cf
2 changed files with 12 additions and 6 deletions

View file

@ -1,3 +1,8 @@
2008-02-22 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/tgba/tgbabddconcretefactory.hh (create_state):
Clarify comments.
2008-02-01 Alexandre Duret-Lutz <adl@lrde.epita.fr> 2008-02-01 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/tgbaalgos/gtec/gtec.cc (couvreur99_check_shy::dump_queue): * src/tgbaalgos/gtec/gtec.cc (couvreur99_check_shy::dump_queue):

View file

@ -1,4 +1,4 @@
// Copyright (C) 2003, 2005 Laboratoire d'Informatique de Paris 6 (LIP6), // Copyright (C) 2003, 2005, 2008 Laboratoire d'Informatique de Paris 6 (LIP6),
// département Systèmes Répartis Coopératifs (SRC), Université Pierre // département Systèmes Répartis Coopératifs (SRC), Université Pierre
// et Marie Curie. // et Marie Curie.
// //
@ -36,14 +36,15 @@ namespace spot
virtual ~tgba_bdd_concrete_factory(); virtual ~tgba_bdd_concrete_factory();
/// Create a state variable for formula \a f. /// Create a Now/Next variables for formula \a f.
/// ///
/// \param f The formula to create a state for. /// \param f The formula to create a state for.
/// \return The variable number for this state. /// \return The BDD variable number v for the Now state. The
/// Next BDD corresponds to v+1.
/// ///
/// The state is not created if it already exists. Instead its /// The state variables are not created if they already exist.
/// existing variable number is returned. Variable numbers /// Instead their existing variable numbers are returned.
/// can be turned into BDD using ithvar(). /// Variable numbers can be turned into BDD using ithvar().
int create_state(const ltl::formula* f); int create_state(const ltl::formula* f);
/// Create an atomic proposition variable for formula \a f. /// Create an atomic proposition variable for formula \a f.