Add a string version of to_lbt_string().
* src/ltlvisit/lbt.cc, src/ltlvisit/lbt.hh (to_lbt_string): New string version.
This commit is contained in:
parent
902dadb898
commit
0fed46b796
2 changed files with 21 additions and 0 deletions
|
|
@ -205,5 +205,13 @@ namespace spot
|
|||
f->accept(v);
|
||||
return os;
|
||||
}
|
||||
|
||||
std::string
|
||||
to_lbt_string(const formula* f)
|
||||
{
|
||||
std::ostringstream os;
|
||||
to_lbt_string(f, os);
|
||||
return os.str();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue