* src/tgbaalgos/minimizerun.cc, src/tgbaalgos/minimizerun.hh
(minimize_run): Rename as ... * src/tgbaalgos/reducerun.cc, src/tgbaalgos/reducerun.hh: (reduce_run): ... this. * src/tgbaalgos/Makefile.am, src/tgbatest/ltl2tgba.cc, src/tgbatest/randtgba.cc: Adjust all references.
This commit is contained in:
parent
3c9f4c6d0d
commit
e58743dbb7
6 changed files with 39 additions and 31 deletions
|
|
@ -38,12 +38,12 @@ tgbaalgos_HEADERS = \
|
|||
ltl2tgba_fm.hh \
|
||||
ltl2tgba_lacim.hh \
|
||||
magic.hh \
|
||||
minimizerun.hh \
|
||||
neverclaim.hh \
|
||||
powerset.hh \
|
||||
projrun.hh \
|
||||
randomgraph.hh \
|
||||
reachiter.hh \
|
||||
reducerun.hh \
|
||||
replayrun.hh \
|
||||
rundotdec.hh \
|
||||
save.hh \
|
||||
|
|
@ -66,12 +66,12 @@ libtgbaalgos_la_SOURCES = \
|
|||
ltl2tgba_fm.cc \
|
||||
ltl2tgba_lacim.cc \
|
||||
magic.cc \
|
||||
minimizerun.cc \
|
||||
neverclaim.cc \
|
||||
powerset.cc \
|
||||
projrun.cc \
|
||||
randomgraph.cc \
|
||||
reachiter.cc \
|
||||
reducerun.cc \
|
||||
replayrun.cc \
|
||||
rundotdec.cc \
|
||||
save.cc \
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
#include "emptiness.hh"
|
||||
#include "tgba/tgba.hh"
|
||||
#include "bfssteps.hh"
|
||||
#include "minimizerun.hh"
|
||||
#include "reducerun.hh"
|
||||
|
||||
namespace spot
|
||||
{
|
||||
|
|
@ -89,7 +89,7 @@ namespace spot
|
|||
}
|
||||
|
||||
tgba_run*
|
||||
minimize_run(const tgba* a, const tgba_run* org)
|
||||
reduce_run(const tgba* a, const tgba_run* org)
|
||||
{
|
||||
tgba_run* res = new tgba_run;
|
||||
state_set ss;
|
||||
|
|
@ -19,19 +19,20 @@
|
|||
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
// 02111-1307, USA.
|
||||
|
||||
#ifndef SPOT_TGBAALGOS_MINIMIZERUN_HH
|
||||
# define SPOT_TGBAALGOS_MINIMIZERUN_HH
|
||||
#ifndef SPOT_TGBAALGOS_REDUCERUN_HH
|
||||
# define SPOT_TGBAALGOS_REDUCERUN_HH
|
||||
|
||||
namespace spot
|
||||
{
|
||||
class tgba;
|
||||
class tgba_run;
|
||||
|
||||
/// \brief Minimize an accepting run.
|
||||
/// \brief Reduce an accepting run.
|
||||
/// \ingroup tgba_run
|
||||
///
|
||||
/// Return a run which is accepting for \a and that is no longer
|
||||
/// that \a org.
|
||||
tgba_run* minimize_run(const tgba* a, const tgba_run* org);
|
||||
tgba_run* reduce_run(const tgba* a, const tgba_run* org);
|
||||
}
|
||||
|
||||
#endif // SPOT_TGBAALGOS_MINIMIZERUN_HH
|
||||
#endif // SPOT_TGBAALGOS_REDUCERUN_HH
|
||||
Loading…
Add table
Add a link
Reference in a new issue