org: add example of LTL->BA translation

This addresses one item in #14.

* doc/org/tut10.org: New file.
* doc/Makefile.am: Add it.
* src/twaalgos/translate.hh: Fix inclusion of types from
postprocessor.
* wrap/python/spot.py (translate): Fix typo in doc string.
This commit is contained in:
Alexandre Duret-Lutz 2015-06-07 15:13:41 +02:00
parent 6c2985e753
commit e7f5af6c6a
4 changed files with 219 additions and 3 deletions

View file

@ -74,7 +74,7 @@ namespace spot
delete simpl_owned_;
}
typedef postprocessor::output_type output_type;
using postprocessor::output_type;
void
set_type(output_type type)
@ -82,13 +82,15 @@ namespace spot
this->postprocessor::set_type(type);
}
using postprocessor::output_pref;
void
set_pref(output_pref pref)
{
this->postprocessor::set_pref(pref);
}
typedef postprocessor::optimization_level optimization_level;
using postprocessor::optimization_level;
void
set_level(optimization_level level)