summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--prolog/engine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/prolog/engine.py b/prolog/engine.py
index 3bc6825..e78bacb 100644
--- a/prolog/engine.py
+++ b/prolog/engine.py
@@ -144,7 +144,7 @@ def check_answers(engine, query, answers, timeout=10):
start = time.monotonic()
try:
# Limit inferences for each solution to curb unbounded recursion.
- limited = '''(call_with_inference_limit(({}), 500000, _ILR),
+ limited = '''(call_with_inference_limit(({}), 1000000, _ILR),
_ILR \= inference_limit_exceeded)'''.format(query)
# Run the query.
reply, output = ask(engine, limited, timeout)