diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2015-12-23 16:23:43 +0100 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2015-12-23 16:23:43 +0100 |
commit | c1bb0d56b2c0482c766d094c65fdf0fd9d1aa0ba (patch) | |
tree | b23a943e337fc81ad3bc898450229c3974f8388c /prolog/problems/lists/min_2 | |
parent | 766e2ba30413850ab43842de0aa3e9a80c5e7236 (diff) |
Simplify Prolog test function
Diffstat (limited to 'prolog/problems/lists/min_2')
-rw-r--r-- | prolog/problems/lists/min_2/common.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/prolog/problems/lists/min_2/common.py b/prolog/problems/lists/min_2/common.py index fc505b7..65ce979 100644 --- a/prolog/problems/lists/min_2/common.py +++ b/prolog/problems/lists/min_2/common.py @@ -29,14 +29,11 @@ test_cases = [ [{'X': '-22'}]), ] -def test(program, solved_problems): - code = (program + '\n' + - server.problems.solutions_for_problems('prolog', solved_problems)) - +def test(code, aux_code): n_correct = 0 engine_id = None try: - engine_id, output = prolog.engine.create(code=code, timeout=1.0) + engine_id, output = prolog.engine.create(code=code+aux_code, timeout=1.0) if engine_id is not None and 'error' not in map(itemgetter(0), output): # Engine successfully created, and no syntax error in program. for query, answers in test_cases: |