termcomp17

loading
details
attribute current value
name termcomp17
description no description
owning solver VeryMax-termCOMP17
contents
#!/bin/bash

./verymax -solver-timeout 4 -global-timeout $STAREXEC_WALLCLOCK_LIMIT -parallel-exec 900 $1 &> outproof.txt

res=$?

if [ -f outproof.txt ]
then 
  if [ $res -eq 1 ] 
  then 
    echo "YES"
    echo
    cat outproof.txt
  elif [ $res -eq 2 ] 
  then
    echo "NO" 
    echo
    cat outproof.txt
  else
    echo "MAYBE"
  fi
else 
  echo "MAYBE"
fi

back to VeryMax-termCOMP17