]> mj.ucw.cz Git - moe.git/blob - examples/problems/sum/config
Added public scripts.
[moe.git] / examples / problems / sum / config
1 # Per-task config
2 # All variables can be overriden in test-specific <test>.config
3
4 # A list of all tests
5 TESTS="1 2"
6
7 # Test with example input
8 SAMPLE_TEST=1
9
10 # Number of points per test
11 POINTS_PER_TEST=1
12
13 # List of extra files needed for compilation
14 EXTRAS="extras.h"
15
16 # Time limit in seconds
17 TIME_LIMIT=10
18
19 # Memory limit in kilobytes
20 MEM_LIMIT=16384
21
22 # Command used to check output syntax (optional)
23 SYNTAX_CHECK='grep -v -- - $TDIR/$TEST.out'
24
25 # Command used to check output correctness
26 OUTPUT_CHECK='diff -bBu $TDIR/$TEST.ok $TDIR/$TEST.out'