summaryrefslogtreecommitdiff
path: root/contrib/run-script-smteval2013
blob: fbdf4e039b2612729f2dcf85d600b71982780501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/bash

cvc4=./cvc4
bench="$1"

logic=$(expr "$(grep -m1 '^[^;]*set-logic' "$bench")" : ' *(set-logic  *\([A-Z_]*\) *) *$')

# use: trywith [params..]
# to attempt a run.  Only thing printed on stdout is "sat" or "unsat", in
# which case this run script terminates immediately.  Otherwise, this
# function returns normally.
function trywith {
  result="$($cvc4 --stats -L smt2 --no-checking --no-interactive "$@" $bench)"
  case "$result" in
    sat|unsat) echo "$result"; exit 0;;
  esac
}

# use: finishwith [params..]
# to run cvc4 and let it output whatever it will to stdout.
function finishwith {
  $cvc4 --stats -L smt2 --no-checking --no-interactive "$@" $bench
}

case "$logic" in

QF_LRA)
  finishwith --no-restrict-pivots --enable-miplib-trick --miplib-trick-subs=2 --fc-penalties --collect-pivot-stats --use-soi --new-prop --dio-decomps --unconstrained-simp --fancy-final
  ;;
AUFLIA)
  # 60 seconds with default decision heuristic
  trywith --tlimit-per=60000
  # try simplification for 60 seconds, default decision heuristic
  trywith --simplification=batch --tlimit-per=60000
  # switch to internal decision heuristic
  finishwith --decision=internal
  ;;
QF_AUFBV)
  trywith --tlimit-per=600000
  finishwith --decision=justification-stoponly
  ;;
QF_BV)
  trywith --bv-core --decision=justification --tlimit-per=10000
  trywith --decision=justification --tlimit-per=60000
  trywith --decision=internal --bitblast-eager --tlimit-per=600000
  finishwith --decision=justification --decision-use-weight --decision-weight-internal=usr1
  ;;
QF_AX)
  trywith --tlimit-per=2000
  finishwith --no-arrays-model-based
  ;;
*)
  # just run the default
  finishwith
  ;;

esac

generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback