summaryrefslogtreecommitdiff
path: root/prolog/problems/clp_fd/magic_1
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2015-12-23 16:23:43 +0100
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2015-12-23 16:23:43 +0100
commitc1bb0d56b2c0482c766d094c65fdf0fd9d1aa0ba (patch)
treeb23a943e337fc81ad3bc898450229c3974f8388c /prolog/problems/clp_fd/magic_1
parent766e2ba30413850ab43842de0aa3e9a80c5e7236 (diff)
Simplify Prolog test function
Diffstat (limited to 'prolog/problems/clp_fd/magic_1')
-rw-r--r--prolog/problems/clp_fd/magic_1/common.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/prolog/problems/clp_fd/magic_1/common.py b/prolog/problems/clp_fd/magic_1/common.py
index b897cb3..3ffe72f 100644
--- a/prolog/problems/clp_fd/magic_1/common.py
+++ b/prolog/problems/clp_fd/magic_1/common.py
@@ -33,14 +33,11 @@ test_cases = [
[8, 1, 6, 3, 5, 7, 4, 9, 2], [8, 3, 4, 1, 5, 9, 6, 7, 2]]'}]),
]
-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: