diff options
Diffstat (limited to 'prolog')
-rw-r--r-- | prolog/en.py | 6 | ||||
-rw-r--r-- | prolog/problems/lists_advanced/rev_2/common.py | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/prolog/en.py b/prolog/en.py index 8c60eb3..17a6fc4 100644 --- a/prolog/en.py +++ b/prolog/en.py @@ -22,14 +22,14 @@ hint = { ''', 'monkey_change': '''\ -<p>Check this part.</p> +<p>Check the highlighted part.</p> ''', 'monkey_insert': '''\ -<p>Add another part.</p> +<p>Add another goal or clause.</p> ''', 'monkey_remove': '''\ -<p>Remove this part.</p> +<p>Remove the highlighted part.</p> ''', } diff --git a/prolog/problems/lists_advanced/rev_2/common.py b/prolog/problems/lists_advanced/rev_2/common.py index f79ddca..1ce0031 100644 --- a/prolog/problems/lists_advanced/rev_2/common.py +++ b/prolog/problems/lists_advanced/rev_2/common.py @@ -57,7 +57,7 @@ def test(code, aux_code): 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): + if prolog.engine.check_answers(engine_id, query=query, answers=answers, timeout=1.0, inference_limit=1000): n_correct += 1 except socket.timeout: pass |