You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
709 B

  1. # Create build directory for storm
  2. mkdir build
  3. # Go to build directory
  4. cd build
  5. # Configure the project
  6. cmake ..
  7. # If you want an interactive configuration, try "ccmake ..". Then you can press "c" to initially configure the project, change your values and then press "g" to generate the Makefile
  8. # After generating the Makefile you can build the resources we need for the project
  9. make resources
  10. # Now we build the main project for DFTs
  11. make storm-dft-main
  12. # Last you can run an example
  13. ./src/storm-dft -dft ../examples/dft/and.dft -mttf
  14. # To get a list of all available arguments run
  15. ./src/storm-dft --help
  16. # Example for DFT to Petri net translation
  17. ./src/storm-dft -dft ../examples/dft/and.dft --gspn