Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnyf/openpromela
Synthesis of discrete dynamical systems from multi-paradigm specifications
https://github.com/johnyf/openpromela
ltl multi-paradigm-specifications promela synthesis
Last synced: 2 months ago
JSON representation
Synthesis of discrete dynamical systems from multi-paradigm specifications
- Host: GitHub
- URL: https://github.com/johnyf/openpromela
- Owner: johnyf
- License: other
- Created: 2015-02-05T05:01:20.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-09-28T04:51:42.000Z (about 7 years ago)
- Last Synced: 2024-09-19T13:37:47.918Z (3 months ago)
- Topics: ltl, multi-paradigm-specifications, promela, synthesis
- Language: Python
- Homepage: https://pypi.org/project/openpromela
- Size: 260 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status][build_img]][travis]
[![Coverage Status][coverage]][coveralls]About
=====A synthesizer from open Promela specifications. It:
- translates open Promela to linear temporal logic (LTL)
- compiles the LTL formula to an implementation using the GR(1) game solver [`omega.games.gr1`](https://github.com/johnyf/omega/blob/master/omega/games/gr1.py)
- dumps a transition relation that implements the open Promela specification.The language and implementation are documented in:
Filippidis I., Murray R.M., Holzmann G.J.
[A multi-paradigm language for reactive synthesis](http://dx.doi.org/10.4204/EPTCS.202.6)
4th Workshop on Synthesis (SYNT) 2015
Electronic Proceedings in Theoretical Computer Science (EPTCS)
vol.202, pp.73-97, 2016Filippidis I., Murray R.M., Holzmann G.J.
[Synthesis from multi-paradigm specifications](http://resolver.caltech.edu/CaltechCDSTR:2015.003)
California Institute of Technology, Pasadena, CA, 2015
CDSTR:2015.003Usage
=====The package can be used both as a library and from the command line. A script named `ospin` is created as entry point. It is placed where `setuptools` installs new executables, e.g., whre `python` itself resides. To learn how to use the script, invoke it with:
```
ospin --help
```Installation
============Use `pip` for `openpromela` itself:
```
pip install openpromela
```Pure Python dependencies suffice, unless you have a demanding problem.
In that case, build `dd.cudd` to interface to CUDD.License
=======
[BSD-3](http://opensource.org/licenses/BSD-3-Clause), see `LICENSE` file.[build_img]: https://travis-ci.org/johnyf/openpromela.svg?branch=master
[travis]: https://travis-ci.org/johnyf/openpromela
[coverage]: https://coveralls.io/repos/johnyf/openpromela/badge.svg?branch=master
[coveralls]: https://coveralls.io/r/johnyf/openpromela?branch=master