#!/bin/sh

if [ $# != 5 ]; then
    echo "Usage: $0 -t timeout -s seed inputfile"
    exit 1
fi

timeout=$2
seed=$4
input=$5

echo "file = '$input'"
echo "Using seed $seed"
sleep $seed
echo "SATISFIABLE"
echo "CPU time : $seed s"
