* src/saba/sabacomplementtgba.cc: Fix a bug.

This commit is contained in:
Guillaume Sadegh 2010-01-16 23:21:26 +01:00
parent 1f19198d2d
commit be78c82e44
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2010-01-16 Guillaume Sadegh <sadegh@lrde.epita.fr>
* src/saba/sabacomplementtgba.cc: Fix a bug.
2010-01-16 Damien Lefortier <dam@lrde.epita.fr>
Use taa_tgba_formula instead of taa_tgba_string in ltl_to_taa to

View file

@ -1,4 +1,4 @@
// Copyright (C) 2009 Laboratoire d'Informatique de Paris 6 (LIP6),
// Copyright (C) 2009, 2010 Laboratoire d'Informatique de Paris 6 (LIP6),
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
// et Marie Curie.
//
@ -228,6 +228,9 @@ namespace spot
// Make the conjunction with ranks.
std::vector<int> current_ranks(state_list.size(), max_rank);
if (state_list.empty())
return;
do
{
explicit_state_conjunction* conj = new explicit_state_conjunction();