ltlsynt: misc typos

* doc/org/ltlsynt.org: Fix example.
* bin/ltlsynt.cc: Fix --help text.
This commit is contained in:
Alexandre Duret-Lutz 2019-06-18 13:22:40 +02:00
parent 8df5f5137e
commit 8c13d7209e
2 changed files with 7 additions and 7 deletions

View file

@ -85,13 +85,13 @@ Fortunately, the SYNTCOMP organizers also provide a tool called
[[https://github.com/reactive-systems/syfco][=syfco=]] which can translate a
TLSF specification to an LTL formula.
The following four steps show you how a TLSF specification called spec.tlsf can
The following four steps show you how a TLSF specification called =FILE= can
be synthesized using =syfco= and =ltlsynt=:
#+BEGIN_SRC sh :export code
LTL=$(syfco FILE -f ltlxba -m fully)
IN=$(syfco FILE -f ltlxba -m fully)
OUT=$(syfco FILE -f ltlxba -m fully)
IN=$(syfco FILE --print-input-signals)
OUT=$(syfco FILE --print-output-signals)
ltlsynt --formula="$LTL" --ins="$IN" --outs="$OUT"
#+END_SRC