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
8dc6776c
Commit
8dc6776c
authored
Jan 23, 2015
by
Alexandre Duret-Lutz
Browse files
postproc: fix handling of --complete
* src/tgbaalgos/postproc.cc: Here. * src/tgbatest/readsave.test: Test it.
parent
93271bed
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/tgbaalgos/postproc.cc
View file @
8dc6776c
...
...
@@ -125,7 +125,11 @@ namespace spot
postprocessor
::
run
(
tgba_digraph_ptr
a
,
const
ltl
::
formula
*
f
)
{
if
(
type_
==
TGBA
&&
PREF_
==
Any
&&
level_
==
Low
)
return
a
;
{
if
(
COMP_
)
a
=
tgba_complete
(
a
);
return
a
;
}
if
(
simul_
<
0
)
simul_
=
(
level_
==
Low
)
?
1
:
3
;
...
...
@@ -171,7 +175,7 @@ namespace spot
if
(
m
->
num_states
()
<
a
->
num_states
())
a
=
m
;
}
if
(
COMP_
==
Complete
)
if
(
COMP_
)
a
=
tgba_complete
(
a
);
return
a
;
}
...
...
@@ -180,6 +184,8 @@ namespace spot
{
if
(
type_
==
BA
)
a
=
do_degen
(
a
);
if
(
COMP_
==
Complete
)
a
=
tgba_complete
(
a
);
return
a
;
}
...
...
@@ -381,7 +387,7 @@ namespace spot
sim
=
dba
?
dba
:
sim
;
if
(
COMP_
==
Complete
)
if
(
COMP_
)
sim
=
tgba_complete
(
sim
);
return
sim
;
...
...
src/tgbatest/readsave.test
View file @
8dc6776c
...
...
@@ -286,7 +286,7 @@ EOF
diff
output
expected
$autfilt
-
H
<<
EOF
|
$autfilt
--
dot
=
vcsn
>
output
cat
>
input
<<
EOF
HOA
:
v1
States
:
4
Start
:
2
...
...
@@ -306,6 +306,7 @@ State: 3 "s3"
[
0
]
1
--
END
--
EOF
$autfilt
-
H
input
|
$autfilt
--
dot
=
vcsn
>
output
cat
>
expected
<<
EOF
digraph
G
{
...
...
@@ -334,3 +335,5 @@ digraph G {
EOF
diff
output
expected
test
1
=
`$autfilt -H input --complete | $autfilt --is-complete --count`
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