1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
from operator import itemgetter
import socket
import prolog.engine
import prolog.util
from server.hints import Hint, HintPopup
id = 108
number = 80
visible = True
facts = None
solution = '''\
min([X], X).
min([H|T], Min):-
min(T, Min1),
( H < Min1, Min is H
;
H >= Min1, Min is Min1 ).
'''
hint_type = {
'eq_instead_of_equ_markup': HintPopup('eq_instead_of_equ_markup'),
'eq_instead_of_equ': Hint('eq_instead_of_equ'),
'predicate_always_false': Hint('predicate_always_false'),
'base_case': Hint('base_case'),
'recursive_case': Hint('recursive_case'),
'timeout': Hint('timeout'),
'empty_list_base_case': Hint('empty_list_base_case'),
'list_instead_of_elem_base_case': Hint('list_instead_of_elem_base_case'),
'duplicates_not_covered': Hint('duplicates_not_covered'),
'args_not_instantiated': Hint('args_not_instantiated'),
'unprotected_branch': Hint('unprotected_branch'),
'one_branch_missing': Hint('one_branch_missing'),
}
test_cases = [
('min([15], X)',
[{'X': '15'}]),
('min([22, 13, 81], X)',
[{'X': '13'}]),
('min([42, 42, 42, 42], X)',
[{'X': '42'}]),
('min([-22, 113, 1], X)',
[{'X': '-22'}]),
]
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
def hint(code, aux_code):
tokens = prolog.util.tokenize(code)
try:
engine_id, output = prolog.engine.create(code=code+aux_code, timeout=1.0)
# strict equality testing instead of simple matching
# this is usually (but not necessarily) wrong
targets = [prolog.util.Token('EQ', '==')]
marks = [(t.pos, t.pos + len(t.val)) for t in tokens if t in targets]
if marks:
return [{'id': 'eq_instead_of_equ_markup', 'start': m[0], 'end': m[1]} for m in marks] + \
[{'id': 'eq_instead_of_equ'}]
# target predicate seems to always be false
if not prolog.engine.ask_truthTO(engine_id, 'min(_, _)'):
return [{'id': 'predicate_always_false'}]
if prolog.engine.ask_truthTO(engine_id, 'min([], _)'):
return [{'id': 'empty_list_base_case'}]
if prolog.engine.ask_truthTO(engine_id, 'min([39], [39])'):
return [{'id': 'list_instead_of_elem_base_case'}]
if prolog.engine.ask_truthTO(engine_id,
'min([1, 3, 9], 1), min([3, 9, 27, 1], 1), \+ min([3, 3, 3], 3)'):
return [{'id': 'duplicates_not_covered'}]
reply, output = prolog.engine.ask(engine_id,
'min([1, 2, 2, 2, 3], 1), min([3, 2, 2, 2, 1], 1)', timeout=1)
if reply.get('code') == 'instantiation_error':
return [{'id': 'args_not_instantiated'}]
# TODO is the ! necessary here?
if prolog.engine.ask_truthTO(engine_id,
'findall(M, min([1, 5, 2, 4, 3], M), L), member(X, L), X > 1, !'):
return [{'id': 'unprotected_branch'}]
if prolog.engine.ask_truthTO(engine_id, '''\
min([1, 2, 3, 4, 5], 1),
\+ min([5, 4, 3, 2, 1], 1)
;
\+ min([1, 2, 3, 4, 5], 1),
min([5, 4, 3, 2, 1], 1)'''):
return [{'id': 'one_branch_missing'}]
# missing/failed base case
if not prolog.engine.ask_truthTO(engine_id, 'min([-45], -45)'):
return [{'id': 'base_case'}]
# base case works, the recursive doesn't (but it doesn't timeout)
# this may be left as the last, most generic hint
if not prolog.engine.ask_truth(engine_id, 'min([2, 41, -22], -22)'):
return [{'id': 'recursive_case'}]
except socket.timeout as ex:
return [{'id': 'timeout'}]
finally:
if engine_id:
prolog.engine.destroy(engine_id)
return []
|