All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cvc5-cvc5-1.2.0.contrib.competitions.sygus-comp.run-script-sygusComp2016-CLIA Maven / Gradle / Ivy

#!/bin/bash

cvc4=./cvc4
bench="$1"

function trywith {
  ($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; exit 1)
  if [ ${PIPESTATUS[1]} -eq 0 ]; then exit 0; fi
}

trywith --decision=internal --cbqi-prereg-inst
 




© 2015 - 2025 Weber Informatics LLC | Privacy Policy