# Per-task config
# All variables can be overriden in test-specific <test>.config

TASK_TYPE=file
IO_TYPE=stdio

# A list of all tests
TESTS=`seq 1 10`

# Test with example input
SAMPLE_TESTS=0

# Number of points per test
POINTS_PER_TEST=10

# Time limit in seconds
TIME_LIMIT=3

# Memory limit in kilobytes
MEM_LIMIT=132072

# Compilation exceptions
COMP_EXTRAS="neckmain.c neckmain.pas necklace.h"
EXTRA_CFLAGS="neckmain.c"

COMP_p='/usr/bin/fpc -Ci -Cr -Ct -g -O2 -Sg -o$EXE $EXTRA_PFLAGS neckmain.pas'
COMP_pas="$COMP_p"

# Command used to check output correctness
# Returns exit code 1 if output is incorrect, 0 if correct
# fd1 is connect to evaluator log, feel free to log anything
# fd2 is an optional one-line verdict
# The checker can generate $TDIR/$TEST.pts to assign points irregularly
#OUTPUT_CHECK='$PDIR/judge $TDIR/$TEST.out $TDIR/$TEST.ok $TDIR/$TEST.in'
