Skip to content
GitLab
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
b751f00d
Commit
b751f00d
authored
Nov 03, 2003
by
Alexandre Duret-Lutz
Browse files
* iface/gspn/eesrg.cc (tgba_succ_iterator_gspn_eesrg::step):
Skip unknown variables.
parent
e394b8e9
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
b751f00d
2003-11-03 Alexandre Duret-Lutz <adl@src.lip6.fr>
* iface/gspn/eesrg.cc (tgba_succ_iterator_gspn_eesrg::step):
Skip unknown variables.
* iface/gspn/gspn.cc
(tgba_gspn_eesrg_private_::tgba_gspn_eesrg_private_): Show prop_index()
and prop_kind() arguments on error.
...
...
iface/gspn/eesrg.cc
View file @
b751f00d
...
...
@@ -210,7 +210,12 @@ namespace spot
int
var
=
bdd_var
(
cond
);
tgba_gspn_eesrg_private_
::
prop_map
::
iterator
i
=
data_
->
prop_dict
.
find
(
var
);
assert
(
i
!=
data_
->
prop_dict
.
end
());
// It's OK if VAR is unknown from GreatSPN (it might have
// been used to synchornize other automaton or something),
// just skip it.
if
(
i
!=
data_
->
prop_dict
.
end
())
continue
;
bdd
high
=
bdd_high
(
cond
);
if
(
high
==
bddfalse
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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