* src/tgbaalgos/neverclaim.cc (never_claim_bfs): Do not output
space before colon, and do not output the top-level formula using Spin's syntax.
This commit is contained in:
parent
30652ba336
commit
16fd8268c4
2 changed files with 10 additions and 4 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
2004-05-14 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||||
|
|
||||||
|
* src/tgbaalgos/neverclaim.cc (never_claim_bfs): Do not output
|
||||||
|
space before colon, and do not output the top-level formula using
|
||||||
|
Spin's syntax.
|
||||||
|
|
||||||
2004-05-14 Thomas Martinez <martinez@src.lip6.fr>
|
2004-05-14 Thomas Martinez <martinez@src.lip6.fr>
|
||||||
|
|
||||||
* src/tgbatest/ltl2tgba.cc (main): Thinko.
|
* src/tgbatest/ltl2tgba.cc (main): Thinko.
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@ namespace spot
|
||||||
if (f_)
|
if (f_)
|
||||||
{
|
{
|
||||||
os_ << " /* ";
|
os_ << " /* ";
|
||||||
to_spin_string(f_, os_);
|
to_string(f_, os_);
|
||||||
os_ << " */";
|
os_ << " */";
|
||||||
}
|
}
|
||||||
os_ << std::endl;
|
os_ << std::endl;
|
||||||
|
|
@ -63,7 +63,7 @@ namespace spot
|
||||||
os_ << " fi;" << std::endl;
|
os_ << " fi;" << std::endl;
|
||||||
if (accept_all_ != -1)
|
if (accept_all_ != -1)
|
||||||
{
|
{
|
||||||
os_ << "accept_all :" << std::endl;
|
os_ << "accept_all:" << std::endl;
|
||||||
os_ << " skip" << std::endl;
|
os_ << " skip" << std::endl;
|
||||||
}
|
}
|
||||||
os_ << "}" << std::endl;
|
os_ << "}" << std::endl;
|
||||||
|
|
@ -125,7 +125,7 @@ namespace spot
|
||||||
{
|
{
|
||||||
if (fi_needed_ != 0)
|
if (fi_needed_ != 0)
|
||||||
os_ << " fi;" << std::endl;
|
os_ << " fi;" << std::endl;
|
||||||
os_ << get_state_label(s, n) << " : ";
|
os_ << get_state_label(s, n) << ": ";
|
||||||
os_ << "/* " << automata_->format_state(s) << " */" ;
|
os_ << "/* " << automata_->format_state(s) << " */" ;
|
||||||
os_ << std::endl;
|
os_ << std::endl;
|
||||||
os_ << " if" << std::endl;
|
os_ << " if" << std::endl;
|
||||||
|
|
@ -144,7 +144,7 @@ namespace spot
|
||||||
{
|
{
|
||||||
if (fi_needed_)
|
if (fi_needed_)
|
||||||
os_ << " fi;" << std::endl;
|
os_ << " fi;" << std::endl;
|
||||||
os_ << get_state_label(s, n) << " : ";
|
os_ << get_state_label(s, n) << ": ";
|
||||||
os_ << "/* " << automata_->format_state(s) << " */";
|
os_ << "/* " << automata_->format_state(s) << " */";
|
||||||
os_ << std::endl;
|
os_ << std::endl;
|
||||||
os_ << " if" << std::endl;
|
os_ << " if" << std::endl;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue