* src/tgbaalgos/gtec/ce.cc (couvreur99_check_result::accepting_path):

Initialize best_end to remove a spurious warning.
This commit is contained in:
Alexandre Duret-Lutz 2004-10-29 07:05:30 +00:00
parent e7bc4f2a5a
commit 434475dbc8
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2004-10-29 Alexandre Duret-Lutz <adl@src.lip6.fr> 2004-10-29 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbaalgos/gtec/ce.cc (couvreur99_check_result::accepting_path):
Initialize best_end to remove a spurious warning.
* src/tgbaalgos/gtec/ce.cc (couvreur99_check_result::accepting_run, * src/tgbaalgos/gtec/ce.cc (couvreur99_check_result::accepting_run,
couvreur99_check_result::complete_cycle, couvreur99_check_result::complete_cycle,
couvreur99_check_result::accepting_path): Record conditions and couvreur99_check_result::accepting_path): Record conditions and

View file

@ -304,7 +304,7 @@ namespace spot
// The best path seen so far. // The best path seen so far.
tgba_run::steps best_path; tgba_run::steps best_path;
// The end state of the base path. // The end state of the base path.
const state* best_end; const state* best_end = 0;
// The acceptance conditions traversed by BEST_PATH. // The acceptance conditions traversed by BEST_PATH.
bdd best_acc = bddfalse; bdd best_acc = bddfalse;