From 4646f65854914720c43e3a7cd239b1f7339483ec Mon Sep 17 00:00:00 2001 From: Moss Prescott Date: Wed, 27 Mar 2024 10:30:02 -0400 Subject: [PATCH] Increase max cycles --- alt/scheme/test_rvm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alt/scheme/test_rvm.py b/alt/scheme/test_rvm.py index fd5fd60..6b531ad 100755 --- a/alt/scheme/test_rvm.py +++ b/alt/scheme/test_rvm.py @@ -396,7 +396,7 @@ def go(xs): return "(define (cons $$x $$y) (rib $$x $$y 0))\n" + go(list(exprs)) -def run_to_halt(program, interpreter, max_cycles=200000, simulator="codegen"): +def run_to_halt(program, interpreter, max_cycles=250000, simulator="codegen"): """Compile and run a Scheme program, then return a function for inspecting the RAM, and a list of words that were written to the TTY port. """