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
15 lines
321 B
import sys
|
|
import os
|
|
import subprocess
|
|
prop = ' --prop \"Pmax=? [F<1 \\"goal\\"]\" --ma:technique unifplus'
|
|
storm= '/home/timo/ustorm/build/bin/storm'
|
|
|
|
|
|
if len(sys.argv)<2:
|
|
print("no input file found\n")
|
|
exit()
|
|
|
|
for a in sys.argv[1:]:
|
|
file = " --prism " + a
|
|
cmd = storm + file + prop
|
|
os.system(cmd)
|