* src/tgbaalgos/reductgba_sim.cc (reduc_tgba_sim): Add two
assert(). This patch has been lying in my tree since 2007-04-30.
This commit is contained in:
parent
cc0ca4ae54
commit
fbbaef0ab8
2 changed files with 10 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2008-01-10 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||
|
||||
* src/tgbaalgos/reductgba_sim.cc (reduc_tgba_sim): Add two
|
||||
assert(). This patch has been lying in my tree since 2007-04-30.
|
||||
|
||||
2008-01-08 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||
|
||||
This is something Soheib and I worked on back in July, but a
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Copyright (C) 2004, 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||
// Copyright (C) 2004, 2005, 2007 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||
// et Marie Curie.
|
||||
//
|
||||
|
|
@ -673,6 +673,8 @@ namespace spot
|
|||
direct_simulation_relation* rel
|
||||
= get_direct_relation_simulation(automatareduc, std::cout);
|
||||
|
||||
assert(rel);
|
||||
|
||||
automatareduc->display_rel_sim(rel, std::cout);
|
||||
automatareduc->quotient_state(rel);
|
||||
automatareduc->delete_transitions(rel);
|
||||
|
|
@ -685,6 +687,8 @@ namespace spot
|
|||
delayed_simulation_relation* rel
|
||||
= get_delayed_relation_simulation(automatareduc, std::cout);
|
||||
|
||||
assert(rel);
|
||||
|
||||
automatareduc->display_rel_sim(rel, std::cout);
|
||||
automatareduc->quotient_state(rel);
|
||||
automatareduc->delete_transitions(rel);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue