not a formula&. This is more homogeneous. * src/ltlvisit/dump.cc (dump): Likewise. * src/ltlvisit/dotty.hh (dotty): Likewise. * src/ltlvisit/dotty.cc (dotty): Likewise. * src/ltlvisit/tostring.hh (to_string): Likewise. * src/ltlvisit/tostring.cc (to_string): Likewise. * src/ltltest/readltl.cc, src/ltltest/equals.cc, src/ltltest/tostring.cc: Adjust usage.
20 lines
437 B
C++
20 lines
437 B
C++
#ifndef SPOT_LTLVISIT_DUMP_HH
|
|
# define SPOT_LTLVISIT_DUMP_HH
|
|
|
|
#include "ltlast/formula.hh"
|
|
#include <iostream>
|
|
|
|
namespace spot
|
|
{
|
|
namespace ltl
|
|
{
|
|
/// \brief Dump a formula tree.
|
|
/// \param f The formula to dump.
|
|
/// \param os The stream where it should be output.
|
|
///
|
|
/// This is useful to display a formula when debugging.
|
|
void dump(const formula* f, std::ostream& os);
|
|
}
|
|
}
|
|
|
|
#endif // SPOT_LTLVISIT_DUMP_HH
|