Converting Rabin (or Other) to Büchi, and simplifying it
Consider the following Rabin automaton, generated by ltl2dstar
:
ltldo ltl2dstar -f 'F(Xp1 xor XXp1)' > tut30.hoa
Our goal is to generate an equivalent Büchi automaton, preserving determinism if possible. However nothing of what we will write is specific to Rabin acceptance: the same code will convert automata with any acceptance to Büchi acceptance.
Shell
We use autfilt
with option -B
to request Büchi acceptance and
state-based output and -D
to express a preference for deterministic
output. Using option -D/--deterministic
(or --small
) actually
activates the "postprocessing" routines of Spot: the acceptance will
not only be changed to Büchi, but simplification routines (useless
SCCs removal, simulation-based reductions, acceptance sets
simplifications, WDBA-minimization, …) will also be applied.
autfilt -B -D tut30.hoa
In the general case transforming an automaton with a complex acceptance condition into a Büchi automaton can make the output bigger. However the postprocessing routines may manage to simplify the result further.
Python
The Python version uses the postprocess()
routine:
import spot aut = spot.automaton('tut30.hoa').postprocess('BA', 'deterministic') print(aut.to_str('hoa'))
The postprocess()
function has an interface similar to
the translate()
function discussed previously:
import spot help(spot.postprocess)
C++
The C++ version of this code is a bit more verbose, because the
postprocess()
function does not exist. You have to instantiate a
postprocessor
object, configure it, and then call it for each
automaton to process.
#include <iostream> #include <spot/parseaut/public.hh> #include <spot/twaalgos/postproc.hh> #include <spot/twaalgos/hoa.hh> int main() { spot::parsed_aut_ptr pa = parse_aut("tut30.hoa", spot::make_bdd_dict()); if (pa->format_errors(std::cerr)) return 1; if (pa->aborted) { std::cerr << "--ABORT-- read\n"; return 1; } spot::postprocessor post; post.set_type(spot::postprocessor::BA); post.set_pref(spot::postprocessor::Deterministic); post.set_level(spot::postprocessor::High); auto aut = post.run(pa->aut); spot::print_hoa(std::cout, aut) << '\n'; return 0; }