* src/tgbaalgos/gtec/ce.hh, src/misc/freelist.hh,

src/tgba/bddprint.hh: Fix Doxygen comments.
This commit is contained in:
Alexandre Duret-Lutz 2004-04-21 20:14:40 +00:00
parent 2f84bee41c
commit cf1ab2946f
4 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,8 @@
2004-04-21 Alexandre Duret-Lutz <adl@gnu.org> 2004-04-21 Alexandre Duret-Lutz <adl@gnu.org>
* src/tgbaalgos/gtec/ce.hh, src/misc/freelist.hh,
src/tgba/bddprint.hh: Fix Doxygen comments.
* src/tgbaalgos/neverclaim.hh (never_claim_reachable): Document * src/tgbaalgos/neverclaim.hh (never_claim_reachable): Document
arguments. arguments.
* src/tgbaalgos/neverclaim.cc (never_claim_bfs::state_is_accepting): * src/tgbaalgos/neverclaim.cc (never_claim_bfs::state_is_accepting):

View file

@ -65,7 +65,7 @@ namespace spot
/// requested by the user. /// requested by the user.
virtual int extend(int n) = 0; virtual int extend(int n) = 0;
/// Such pairs describe \c second free integer starting at \first. /// Such pairs describe \c second free integer starting at \c first.
typedef std::pair<int, int> pos_lenght_pair; typedef std::pair<int, int> pos_lenght_pair;
typedef std::list<pos_lenght_pair> free_list_type; typedef std::list<pos_lenght_pair> free_list_type;
free_list_type fl; ///< Tracks unused BDD variables. free_list_type fl; ///< Tracks unused BDD variables.

View file

@ -70,7 +70,6 @@ namespace spot
/// \brief Format a BDD as a set of acceptance conditions. /// \brief Format a BDD as a set of acceptance conditions.
/// ///
/// This is used when saving a TGBA. /// This is used when saving a TGBA.
/// \param os The output stream.
/// \param dict The dictionary to use, to lookup variables. /// \param dict The dictionary to use, to lookup variables.
/// \param b The BDD to print. /// \param b The BDD to print.
/// \return The BDD formated as a string. /// \return The BDD formated as a string.

View file

@ -27,6 +27,7 @@
namespace spot namespace spot
{ {
/// Compute a counter example from a spot::emptiness_check_status
class counter_example class counter_example
{ {
public: public:
@ -42,6 +43,7 @@ namespace spot
/// \brief Display the example computed by counter_example(). /// \brief Display the example computed by counter_example().
/// ///
/// \param os the output stream
/// \param restrict optional automaton to project the example on. /// \param restrict optional automaton to project the example on.
std::ostream& print_result(std::ostream& os, std::ostream& print_result(std::ostream& os,
const tgba* restrict = 0) const; const tgba* restrict = 0) const;