Python wrapper around tool ltlcross from Spot library
Project description
ltlcross wrapper
Python wrapper around the amazing tool ltlcross from Spot library.
The tool compares LTL to automata translators.
Requires
- Python >= 3.6
- Spot
- pandas >= 0.24
- matplotlib, seaborn
- pandas2pgfplots
The following libraries are needed for bokeh scatter plots (can be used in Jupyter)
- bokeh (installs automatically by
pip) - colorcet (installs automatically by
pip) - jupyter_bokeh for rendering the plots in JupyterLab
Installation
python3 -m pip install -U ltlcross_wrapper
Usage
ltlcross_wrapper offers 3 classes:
ModulizerandGoalModulizersplit a bigltlcrosstask into smaller ones, execute the small tasks in parallel, and merge the intermediate results into one final.csv,.log, and_bogus.ltlfiles. Always useGoalModulizerif one of the compared tools is GOAL!ResAnalyzerparses the results ofltlcross, and implements several functions to analyze and visualize the results, mainly in Jupyter notebooks.
Modulizer
We need to specify the tools and file(s) with formulas which ltlcross should
use. The tools are given as a dict whose items are pairs (name, ltlcross_cmd)
where ltlcross_cmd is COMMANDFMT from man ltlcross.
tools = {"LTL3HOA" : "ltl3hoa -d -x -i -p 2 -f %f > %O",
"SPOT" : "ltl2tgba"
}
Typical usage of Modulizer follows.
m = Modulizer(tools, formulas.ltl)
mp.run()
The above command splits the file formulas.ltl into several files with
2 formulas each, and uses 4 processes to run ltlcross on these small files
in parallel. The number of processes can be controlled by setting
processes in both the constructor and the function run(). The number
of formulas in each small file can be changed by setting chunk_size
in the constructor.
If a previous computation was interrupted for some reason, consider using
m.resume()
instead of m.run(). The function m.resume() will skip computing the
small tasks for which it already finds an .csv file with the result.
You can delete the final results and intermediate files, and rerun the computation by
m.recompute()
By default, all intermediate files will be created in directory
modular.parts and the merged files modular.csv, modular.log,
modular_bogus.ltl will be created in the current directory. The base
modular can be changed to new_name simply by setting name=new_name.
Otherwise, each filename/dirname can be changed by setting out_res_file,
out_log_file, out_bogus_file, and tmp_dir.
Temporary files in ltlcross commands
Some tools need to read the input from (or store the output in) a
temporary file that is different from the one that ltlcross expects.
This file name has to be specified in the command for ltlcross. As
the task will be processed in parallel (unless requested otherwise
with processes=1), we can have a lot of race conditions. For this
purpose, each process created by the Modulizer class set its own
value into an environment variable called $LCW_TMP. You can then
specify tools with commands like
"tool1" : ltl2tgba %f > $LCW_TMP.in.hoa && tool1 $LCW_TMP.in.hoa ...
GOAL & GoalModulizer
Always use GoalModulizer instead of Modulizer if you need to run
GOAL in parallel. GoalModulizer requires additional parameter
goal_root to specify the path to root directory of GOAL (contains
gc, goal, boot.properties). GoalModulizer uses a unique binary
and a unique shadow folder for each process that runs the task.
The path to the unique binary is stored in environment variable
$LCW_GOAL_BIN which you can use in specification of tools to compare.
The goal_root part of the path should be omitted in the ltlcross
command specification. Specifying GOAL is as simple as
'my_goal_batch` : '$LCW_GOAL_BIN batch "{goals commands}"'
If you are using the batch mode of GOAL, you often need to specify the
names of the temporary files in the GOAL command. The $LCW_TMP is
not recognized as a variable inside these commands. Use `echo $LCW_TMP`
which is a nested shell evaluation inside the GOAL command (enclosed in two `).
See an example of complementation performed by GOAL and simplified by
Spot.
tools = {
"piterman": "ltl2tgba -B %f > $LCW_TMP.in && $LCW_GOAL_BIN batch '$temp = complement -m piterman `echo $LCW_TMP.in`; save -c HOAF $temp `echo $LCW_TMP.out;' && autfilt --small --tgba $LCW_TMP.out > %O
"SPOT": "ltl2tgba -B %f | autfilt --complement > %O"
}
m = ltlcross_wrapper.GoalModulizer(goal_root="PATH_TO_GOAL", tools=tools, formula_file="MY_FORMS.ltl")
m.run()
TODO: Explain ltlcross options
Results' Analyzer
See the usage notebook. Currently, bokeh scatter plots do not render directly on github so you might consider to see the notebook on nbviewer
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ltlcross_wrapper-0.7.3.tar.gz.
File metadata
- Download URL: ltlcross_wrapper-0.7.3.tar.gz
- Upload date:
- Size: 24.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.7.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95ca309dacaea1ba69ed2161f218b3e2e9305024288e4ef47f04d7442df1fa52
|
|
| MD5 |
9691c64c7bf41d6a108a6c3e2fd4110b
|
|
| BLAKE2b-256 |
eb69a93d5a6ad16307d8545e909aa2089f4798a438b0adbbd4381d446c6dd812
|
File details
Details for the file ltlcross_wrapper-0.7.3-py3-none-any.whl.
File metadata
- Download URL: ltlcross_wrapper-0.7.3-py3-none-any.whl
- Upload date:
- Size: 25.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.7.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab86bf543865269b20ee2cc6036210f0111a95fe1042d4081bf30e9df56e6df7
|
|
| MD5 |
9c200fadbd6bb24bd4b50c83622f04fd
|
|
| BLAKE2b-256 |
6ac2c669baaa54c12940bd4e1d2cd84ab03e97b88c48b5ff9b7902ea19100f28
|