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
9a8d554f
Commit
9a8d554f
authored
Apr 21, 2004
by
Alexandre Duret-Lutz
Browse files
* wrap/python/cgi/ltl2tgba.in: Pass the formula to
never_claim_reachable, and cgi.escape its output. Lighten the color a bit.
parent
cf1ab294
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
9a8d554f
2004-04-21 Alexandre Duret-Lutz <adl@gnu.org>
2004-04-21 Alexandre Duret-Lutz <adl@src.lip6.fr>
* wrap/python/cgi/ltl2tgba.in: Pass the formula to
never_claim_reachable, and cgi.escape its output.
Lighten the color a bit.
* src/tgbaalgos/gtec/ce.hh, src/misc/freelist.hh,
src/tgba/bddprint.hh: Fix Doxygen comments.
...
...
@@ -42,7 +46,7 @@
it.
Reported by Denis Poitrenaud.
2004-04-17 Alexandre Duret-Lutz <adl@
gnu.org
>
2004-04-17 Alexandre Duret-Lutz <adl@
src.lip6.fr
>
* iface/gspn/ltlgspn.cc (main) [SSP]: Use the standard
counter-example computation for -e5 too.
...
...
wrap/python/cgi/ltl2tgba.in
View file @
9a8d554f
...
...
@@ -191,8 +191,8 @@ LTL-to-Büchi translator</H1>""" % extra_header
formula
=
form
.
getfirst
(
'formula'
,
''
)
color_fm
=
"#D
3AE
F8"
color_lacim
=
"#F8
AED3
"
color_fm
=
"#D
FC6
F8"
color_lacim
=
"#F8
C6DF
"
options_common
=
[
(
'show_formula_png'
,
'draw the formula'
,
0
),
...
...
@@ -433,7 +433,10 @@ if show_degen_png:
if
show_never_claim
:
print
'<H3>Never claim (for degeneralized automaton)</H3>'
print
'<PRE>'
spot
.
never_claim_reachable
(
spot
.
get_cout
(),
degen
)
s
=
spot
.
ostringstream
()
spot
.
never_claim_reachable
(
s
,
degen
,
f
)
print
cgi
.
escape
(
s
.
str
())
del
s
print
'</PRE>'
sys
.
stdout
.
flush
()
...
...
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