#!/bin/bash
# Generic script for Dung's triathlon (D3) at ICCMA 2017
# Please feel free to customize it for your own solver

#name of the script to run your solver
scriptname="generic-interface-2017.sh"

resGr=$(./$(dirname $0)/$scriptname -p EE-GR -f $1 -fo $2 | tr -d '\n')
resSt=$(./$(dirname $0)/$scriptname -p EE-ST -f $1 -fo $2 | tr -d '\n')
resPr=$(./$(dirname $0)/$scriptname -p EE-PR -f $1 -fo $2 | tr -d '\n')

echo $resGr","$resSt","$resPr

exit 0
