summaryrefslogtreecommitdiff
path: root/contrib/competitions/sygus-comp/run-script-sygusComp-current-INV-su
blob: 61efcf6c005c3ffa6f0d7115c044ac1400f78140 (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
#!/bin/bash

cvc4=./cvc4
bench="$1"

function runl {
  limit=$1; shift;
  ulimit -S -t "$limit";$cvc4 --lang=sygus2 --no-type-checking --no-interactive --dag-thresh=0 "$@" $bench 2>/dev/null
}

function trywith {
  sol=$(runl $@)
  status=$?
  if [ $status -ne 134 ]; then
    echo $sol |&
    (read result w1 w2;
    case "$result" in
    unsat)
      case "$w1" in
        "(define-fun") echo "$w1 $w2";cat;exit 0;;
        esac; exit 1;;
    esac; exit 1)
    if [ ${PIPESTATUS[1]} -eq 0 ]; then exit 0; fi
  fi
}

function finishwith {
  $cvc4 --lang=sygus2 --no-type-checking --no-interactive --dag-thresh=0 "$@" $bench 2>/dev/null |
  (read result w1;
  case "$result" in
  unsat) echo "$w1";cat;exit 0;;
  esac)
}

trywith 30 --sygus-unif-pi=cond-enum-igain --sygus-active-gen=var-agnostic --sygus-add-const-grammar --decision=justification
trywith 10 --sygus-active-gen=none --sygus-repair-const
finishwith --sygus-active-gen=none
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback