Skip to content

Shufang-Zhu/Syft-safety

Repository files navigation

Ssyft

Ssyft is a tool for the realizability of Safety LTL specifications. You can either install Ssyft from scratch or use the platform-independent Docker container (see below).

Compilation Instructions for Syft using CMake

Install CUDD

  1. Make sure CUDD is installed. CUDD can be found at: https://github.com/KavrakiLab/cudd.git

  2. Install CUDD:

     $ ./configure --enable-silent-rules --enable-obj --enable-dddmp --prefix=[install location]
     $ sudo make install
    

    If you get an error about aclocal, this might be due to either a. Not having automake:

     $ sudo apt-get install automake
    

    b. Needing to reconfigure, do this before configuring:

     $ autoreconf -i
    

Install FLEX, BISON

  1. Install flex and bison:

     $ sudo apt-get install flex bison
    

Install Boost

  1. Install Boost with

     $ sudo apt-get intall libboost-all-dev
    

Install MONA

  1. You probably want MONA if you are using Syft:

     $ sudo apt-get install mona
    

Install Syfco

  1. Install syfco:

     $ curl -sSL https://get.haskellstack.org/ | sh
     $ git clone https://github.com/reactive-systems/syfco.git
     $ stack install
    

Install& Run SSyf

  1. Compile the parser:

     $ cd parser/safe2fol
     $ make run
    
  2. Compile SSyft using the makefile:

     $ make
    
  3. Run SSyft:

     $ ./ssyft-run.sh [-smv | -tlsf] <filename> <workdir>	
    
  4. Run tests:

     $ cd test/smv
     $ ./run-tests
     $ cd ../test/tlsf
     $ ./run-tests
    

Docker container

It is possible to run Ssyft inside a Docker container. Note: the first time you run the script it may take some time to download to container from DockerHub.

  $ ssyft.sh [-smv | -tlsf] <filename>