sygus_c_INV

loading
details
attribute current value
name sygus_c_INV
description no description
owning solver CVC4-061117-sygus-comp-2017
contents
#!/bin/bash

cvc4=./cvc4
bench="$1"

function runl {
  limit=$1; shift;
  ulimit -S -t "$limit";$cvc4 --lang=sygus --no-checking --no-interactive --dump-synth --default-dag-thresh=0 "$@" $bench
}

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

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

trywith 60 --sygus-inv-templ=pre
finishwith --sygus-inv-templ=post

back to CVC4-061117-sygus-comp-2017