adamtool / webinterface

The web interface for the tool Adam (AdamMC and AdamSYNT) providing an intuitive, visual definition of Petri nets with transits and Petri games, and an interactive interface to the algorithms of AdamMC and AdamSYNT. Contains the repos (as submodules): libs, framework, logics, modelchecking, examples, synthesizer, high-level, webinterface-backend.
http://adam.informatik.uni-oldenburg.de:4567/
GNU General Public License v3.0
5 stars 2 forks source link

A Web Interface for the Model Checking and Synthesis of Distributed Systems with Data Flows

This is the web interface for the command-line tools AdamMC and AdamSYNT.

A deployed version runs here.

Features:

Dependencies:

This module depends on the

Related Publications:

How to Build and Run:

If you have not cloned the repository with the --recursive flag, please first use

git submodule update --init

to get all the code of the backend.

To compile the web interface please use the script

./buildWithBackend.sh

This also generates the corresponding backend jar file of Adam and integrates it. All other dependencies are downloaded by maven. This could take a while. For more details regarding the backend, e.g., how to update to a newer version, please see the ReadMe of the backend.

To start the web interface please use the script

./run.sh

and open localhost:4567 in your browser.

All temporary files created by the web interface or external tools are stored by default in folder ./tmp/ in the server's working directory. This location can be overridden using the command line flag -DADAMWEB_TEMP_DIRECTORY=/path/to/store/temporary/files/.

How to Build the External Tools:

For model checking to work, you have to have the tools abc, aiger, and mchyper, as well as GNU 'time', installed on your system and update the file ADAM.properties to have the correct paths to each one. The source code of each one is in a .tar.gz or a .zip file in this repository. The README for mchyper explains how to compile them.