How can I generate a Buchi Automaton starting from an LTL formula?
e.g.
[] (a <-> ! b)
That is,
At all times in the future
- if
ais truebis false- if
bis trueais false
How can I generate a Buchi Automaton starting from an LTL formula?
e.g.
[] (a <-> ! b)
That is,
At all times in the future
- if
ais truebis false- if
bis trueais false
Copyright © 2021 Jogjafile Inc.
One option is to use gltl2ba, which is based on ltl2ba.
Example: generate a Buchi Automaton from the next LTL formula:
This reads: it is always true that
aif and only if!b(and viceversa). That is, this is the formula you want to encode.The following command generates the never claim associated with the LTL formula, and also the Buchi Automaton (option
-g).More examples are available here.