Browse Source

Relative paths in benchmark script

Former-commit-id: e360ade8ce
tempestpy_adaptions
Mavo 9 years ago
parent
commit
28bc49ed66
  1. 7
      benchmark_dft.py

7
benchmark_dft.py

@ -1,13 +1,14 @@
import os
import os.path
import sys
import subprocess
import re
import time
import argparse
STORM_PATH= "/Users/mvolk/develop/dft-storm/build/src/storm-dft"
EXAMPLE_DIR= "/Users/mvolk/develop/dft-storm/examples/dft/"
DIR=os.getcwd()
STORM_PATH=os.path.join(DIR, "build/src/storm-dft")
EXAMPLE_DIR=os.path.join(DIR, "examples/dft/")
benchmarks = [
("and", False, [3, 1]),

Loading…
Cancel
Save