tct_rci_cert

loading
details
attribute current value
name tct_rci_cert
description no description
owning solver tct-trs_v3.2.0_2020-06-28
contents
#!/bin/bash

# basic variables
executable=tct-trs
gtimeout=$(( $STAREXEC_WALLCLOCK_LIMIT - 2 ))  # TcT timeout
ptimeout=$(( $STAREXEC_WALLCLOCK_LIMIT - 3 ))  # Processor timeout
cores=4                                        # number of cpu cores
memlimit=${STAREXEC_MAX_MEM}M                  # maximal memory in megabyte
stacksize=64M                                  # stacksize of program
LD_LIBRARY_PATH=../lib                         # PATH FOR ADDITIONAL LIBRARIES
PATH=$PWD:$PATH                                # binaries path

program="./$executable
  -t $ptimeout
  --complexity rci
  -s certify
  --ceta total
  $1
  +RTS
  -N$cores
  -M$memlimit
  -K$stacksize
  -RTS"
#echo $program
eval $program

back to tct-trs_v3.2.0_2020-06-28