Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
24fec22e
Commit
24fec22e
authored
Jan 06, 2004
by
Alexandre Duret-Lutz
Browse files
* src/tgbaalgos/emptinesscheck.cc (emptiness_check::complete_cycle):
Do not skip this computation if from == to but the period is empty.
parent
3c363aa1
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
24fec22e
2004-01-06 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbaalgos/emptinesscheck.cc (emptiness_check::complete_cycle):
Do not skip this computation if from == to but the period is empty.
* iface/gspn/eesrg.cc (state_gspn_eesrg::clone): Clone the right
state.
...
...
src/tgbaalgos/emptinesscheck.cc
View file @
24fec22e
// Copyright (C) 2003 Laboratoire d'Informatique de Paris 6 (LIP6),
// Copyright (C) 2003
, 2004
Laboratoire d'Informatique de Paris 6 (LIP6),
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
// et Marie Curie.
//
...
...
@@ -423,7 +423,10 @@ namespace spot
const
state
*
from
,
const
state
*
to
)
{
if
(
from
==
to
)
// If by change or period already ends on the state we have
// to reach back, we are done.
if
(
from
==
to
&&
!
period
.
empty
())
return
;
// Records backlinks to parent state during the BFS.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment