summaryrefslogtreecommitdiff
path: root/prolog/problems/family_relations/mother_2
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.org>2015-09-18 16:40:02 +0200
committerTimotej Lazar <timotej.lazar@araneo.org>2015-09-18 16:40:02 +0200
commitb202e2d5007ca9a53b4ffac4cc2224d647119dbc (patch)
tree65d1182b5f0c5fc98f6f74ce0b6e5859aa7b6148 /prolog/problems/family_relations/mother_2
parente307b6b4235d57a4033a3aaed910615755d84473 (diff)
Add plan for brother/father/mother/sister
Diffstat (limited to 'prolog/problems/family_relations/mother_2')
-rw-r--r--prolog/problems/family_relations/mother_2/common.py1
-rw-r--r--prolog/problems/family_relations/mother_2/sl.py17
2 files changed, 9 insertions, 9 deletions
diff --git a/prolog/problems/family_relations/mother_2/common.py b/prolog/problems/family_relations/mother_2/common.py
index 3a7e196..4d198d4 100644
--- a/prolog/problems/family_relations/mother_2/common.py
+++ b/prolog/problems/family_relations/mother_2/common.py
@@ -20,7 +20,6 @@ mother(X, Y) :-
'''
hint_type = {
- 'general_hint': HintSequence('general_hint', 3),
'or_instead_of_and': Hint('or_instead_of_and'),
'x_must_be_female': Hint('x_must_be_female'),
'x_must_be_parent': Hint('x_must_be_parent'),
diff --git a/prolog/problems/family_relations/mother_2/sl.py b/prolog/problems/family_relations/mother_2/sl.py
index 5922d6c..3494096 100644
--- a/prolog/problems/family_relations/mother_2/sl.py
+++ b/prolog/problems/family_relations/mother_2/sl.py
@@ -14,17 +14,18 @@ description = '''\
X = daniela.
</pre>'''
-hint = {
- 'general_hint': ['''\
-<p><img src="Mother-1.png" /></p>
-<p>Loni naj zbriše imena relacij (parent, mother) s te slike!</p>
-''', '''\
+plan = [
+ '''\
<p><img src="Mother-1.png" /></p>
-''', '''\
+<p>Loni naj zbriše imena relacij (parent, mother) s te slike!</p>''',
+ '''\
+<p><img src="Mother-1.png" /></p>''',
+ '''\
<p>Če je <code>X</code> ženska in je hkrati <code>X</code> starš od <code>Y</code>,
-potem je <code>X</code> mama od <code>Y</code>.</p>
-'''],
+potem je <code>X</code> mama od <code>Y</code>.</p>'''
+]
+hint = {
'or_instead_of_and': '''\
<p>Si morda uporabil podpičje (ki pomeni ALI) namesto vejice (ki pomeni IN)?</p>
''',