* src/misc/optionmap.cc, src/misc/optionmap.hh (option_map::get,

option_map::set): Handle default values.
(anonymous::to_int): Do not print anything.
* src/tgbaalgos/gv04.cc, src/tgbaalgos/gv04.hh,
src/tgbaalgos/tau03.cc, src/tgbaalgos/tau03.hh,
src/tgbaalgos/tau03opt.cc, src/tgbaalgos/tau03opt.hh,
src/tgbaalgos/ce.cc, src/tgbaalgos/ce.hh: Take an option_map in
the constructor.
* src/tgbaalgos/gtec.cc, src/tgbaalgos/gtec.hh: Likewise.  Handle
the "poprem", "group", and "shy" options via the option_map.
Supply a couvreur99() wrapper to the shy/non-shy variant.
* src/tgbatest/ltl2tgba.cc, src/tgbatest/randtgba.cc,
iface/gspn/ssp.cc: Adjust.
This commit is contained in:
Alexandre Duret-Lutz 2005-02-16 18:53:18 +00:00
parent 77888e9293
commit f3effb9da0
20 changed files with 274 additions and 203 deletions

View file

@ -1,4 +1,4 @@
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
// Copyright (C) 2003, 2004, 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
// et Marie Curie.
//
@ -913,9 +913,9 @@ namespace spot
public:
couvreur99_check_shy_ssp(const tgba* a)
: couvreur99_check_shy(a,
true,
option_map(),
numbered_state_heap_ssp_factory_semi::instance())
{
{
}
protected:
@ -995,6 +995,7 @@ namespace spot
assert(dynamic_cast<const tgba_gspn_ssp*>(ssp_automata));
return
new couvreur99_check(ssp_automata,
option_map(),
numbered_state_heap_ssp_factory_semi::instance());
}
@ -1005,7 +1006,7 @@ namespace spot
return
new couvreur99_check_shy
(ssp_automata,
true,
option_map(),
numbered_state_heap_ssp_factory_semi::instance());
}