* doc/Makefile.am (doc): Typo.
* src/ltlvisit/tostring.hh (to_string): Add doxygen comments. * src/ltlast/multop.hh (multop::paircmp): Add doxygen comments. * src/ltlvisit/postfix.hh: Typo.
This commit is contained in:
parent
05f724108d
commit
483507f16e
11 changed files with 26 additions and 12 deletions
|
|
@ -1,5 +1,10 @@
|
|||
2003-06-26 Alexandre Duret-Lutz <aduret@src.lip6.fr>
|
||||
|
||||
* doc/Makefile.am (doc): Typo.
|
||||
* src/ltlvisit/tostring.hh (to_string): Add doxygen comments.
|
||||
* src/ltlast/multop.hh (multop::paircmp): Add doxygen comments.
|
||||
* src/ltlvisit/postfix.hh: Typo.
|
||||
|
||||
* src/ltlast/Makefile.am (ltlastdir, ltlast_HEADERS): New variables.
|
||||
(libltlast_la_SOURCES): Move all headers to ltlast_HEADERS.
|
||||
* src/ltlenv/Makefile.am (ltlenvdir, ltlenv_HEADERS): New variables.
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@ DOXYGEN = doxygen
|
|||
all-local: $(srcdir)/stamp
|
||||
|
||||
doc:
|
||||
rm $(srcdir)/stamp
|
||||
$(AMKE) $(srcdir)/stamp
|
||||
rm -f $(srcdir)/stamp
|
||||
$(MAKE) $(srcdir)/stamp
|
||||
|
||||
$(srcdir)/stamp: $(srcdir)/Doxyfile.in $(top_srcdir)/configure.ac
|
||||
$(MAKE) Doxyfile
|
||||
|
|
|
|||
|
|
@ -24,4 +24,3 @@ libltlast_la_SOURCES = \
|
|||
multop.cc \
|
||||
refformula.cc \
|
||||
unop.cc
|
||||
|
||||
|
|
|
|||
|
|
@ -70,6 +70,7 @@ namespace spot
|
|||
|
||||
|
||||
typedef std::pair<type, vec*> pair;
|
||||
/// Comparison functor used internally by ltl::multop.
|
||||
struct paircmp
|
||||
{
|
||||
bool
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ namespace spot
|
|||
{
|
||||
namespace ltl
|
||||
{
|
||||
/// \brief Apply a algorithm on each node of an AST,
|
||||
/// \brief Apply an algorithm on each node of an AST,
|
||||
/// during a postfix traversal.
|
||||
///
|
||||
/// Override one or more of the postifix_visitor::doit methods
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef SPOT_LTLVISIT_AST2STRING_HH
|
||||
# define SPOT_LTLVISIT_AST2STRING_HH
|
||||
#ifndef SPOT_LTLVISIT_TOSTRING_HH
|
||||
# define SPOT_LTLVISIT_TOSTRING_HH
|
||||
|
||||
#include <ltlast/formula.hh>
|
||||
#include <iostream>
|
||||
|
|
@ -8,9 +8,15 @@ namespace spot
|
|||
{
|
||||
namespace ltl
|
||||
{
|
||||
/// \brief Output a formula as a (parsable) string.
|
||||
/// \param f The formula to translate.
|
||||
/// \param os The stream where it should be output.
|
||||
std::ostream& to_string(const formula* f, std::ostream& os);
|
||||
|
||||
/// \brief Convert a formula into a (parsable) string.
|
||||
/// \param f The formula to translate.
|
||||
std::string to_string(const formula* f);
|
||||
}
|
||||
}
|
||||
|
||||
#endif // SPOT_LTLVISIT_AST2STRING_HH
|
||||
#endif // SPOT_LTLVISIT_TOSTRING_HH
|
||||
|
|
|
|||
|
|
@ -42,4 +42,3 @@ libtgba_la_SOURCES = \
|
|||
tgbaexplicit.cc \
|
||||
tgbaproduct.cc \
|
||||
tgbatranslateproxy.cc
|
||||
|
||||
|
|
|
|||
|
|
@ -21,6 +21,8 @@ namespace spot
|
|||
|
||||
struct transition;
|
||||
typedef std::list<transition*> state;
|
||||
|
||||
/// Explicit transitions (used by spot::tgba_explicit).
|
||||
struct transition
|
||||
{
|
||||
bdd condition;
|
||||
|
|
@ -65,6 +67,7 @@ namespace spot
|
|||
};
|
||||
|
||||
|
||||
/// States used by spot::tgba_explicit.
|
||||
class state_explicit : public spot::state
|
||||
{
|
||||
public:
|
||||
|
|
@ -87,6 +90,7 @@ namespace spot
|
|||
};
|
||||
|
||||
|
||||
/// Successor iterators used by spot::tgba_explicit.
|
||||
class tgba_explicit_succ_iterator : public tgba_succ_iterator
|
||||
{
|
||||
public:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue