summaryrefslogtreecommitdiff
path: root/prolog/problems/clp_r/bounding_box_3
diff options
context:
space:
mode:
authorAleksander Sadikov <aleksander.sadikov@fri.uni-lj.si>2016-04-24 20:59:06 +0200
committerAleksander Sadikov <aleksander.sadikov@fri.uni-lj.si>2016-04-24 20:59:06 +0200
commit77adbfbf6ff1923e913e4a29a7ec675c64c9a899 (patch)
treeb95ff6a63e036fdc3e1dc136a5b68651b16ed5b5 /prolog/problems/clp_r/bounding_box_3
parent75793f4f03307766992a6990e46e593955865018 (diff)
Tests added for CLP(R) set of exercises.
Diffstat (limited to 'prolog/problems/clp_r/bounding_box_3')
-rw-r--r--prolog/problems/clp_r/bounding_box_3/common.py41
1 files changed, 40 insertions, 1 deletions
diff --git a/prolog/problems/clp_r/bounding_box_3/common.py b/prolog/problems/clp_r/bounding_box_3/common.py
index eb2ac0a..fc4ee88 100644
--- a/prolog/problems/clp_r/bounding_box_3/common.py
+++ b/prolog/problems/clp_r/bounding_box_3/common.py
@@ -1,8 +1,15 @@
# coding=utf-8
+from operator import itemgetter
+import socket
+
+import prolog.engine
+import prolog.util
+from server.hints import Hint, HintPopup
+
id = 157
number = 67
-visible = False
+visible = True
facts = None
solution = '''\
@@ -13,3 +20,35 @@ bounding_box([X/Y|L], Xa/Ya, Xb/Yb) :-
{ Xa =< X, X =< Xb,
Ya =< Y, Y =< Yb },
bounding_box(L, Xa/Ya, Xb/Yb).'''
+
+test_cases = [
+ ('bounding_box([2.1/5.0, -2.1/ -3.2, 1.4/8.9], X1/Y1, X2/Y2), \
+ abs(X1 - (-2.1)) =< 1e-8, abs(Y1 - (-3.2)) =< 1e-8, abs(X2 - 2.1) =< 1e-8, abs(Y2 - 8.9) =< 1e-8',
+ [{}]),
+ ('bounding_box([0.1/0.6], X1/Y1, X2/Y2), \
+ abs(X1 - 0.1) =< 1e-8, abs(Y1 - 0.6) =< 1e-8, abs(X2 - 0.1) =< 1e-8, abs(Y2 - 0.6) =< 1e-8',
+ [{}]),
+ ('bounding_box([7.3/7.3, 3.3/0.0, 0.6/1.2, 4.1/6.9], X1/Y1, X2/Y2), \
+ abs(X1 - 0.6) =< 1e-8, abs(Y1 - 0.0) =< 1e-8, abs(X2 - 7.3) =< 1e-8, abs(Y2 - 7.3) =< 1e-8',
+ [{}]),
+]
+
+def test(code, aux_code):
+ n_correct = 0
+ engine_id = None
+ try:
+ 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:
+ if prolog.engine.check_answers(engine_id, query=query, answers=answers, timeout=1.0):
+ n_correct += 1
+ except socket.timeout:
+ pass
+ finally:
+ if engine_id:
+ prolog.engine.destroy(engine_id)
+
+ hints = [{'id': 'test_results', 'args': {'passed': n_correct, 'total': len(test_cases)}}]
+ return n_correct, len(test_cases), hints
+