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.

15 lines
321 B

  1. import sys
  2. import os
  3. import subprocess
  4. prop = ' --prop \"Pmax=? [F<1 \\"goal\\"]\" --ma:technique unifplus'
  5. storm= '/home/timo/ustorm/build/bin/storm'
  6. if len(sys.argv)<2:
  7. print("no input file found\n")
  8. exit()
  9. for a in sys.argv[1:]:
  10. file = " --prism " + a
  11. cmd = storm + file + prop
  12. os.system(cmd)