Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ jobs:
echo "Running..."

# Run Evolver with GDB
# However, sent a SIGINT after 6 minutes (indicating a hanging Evolver) to get a stacktrace
TIMEOUT=360
# However, sent a SIGINT after 10 minutes (indicating a hanging Evolver) to get a stacktrace
TIMEOUT=600

# Run GDB in the background
gdb_output_file=$(mktemp)
Expand Down
7 changes: 5 additions & 2 deletions tic_tac_toe_evolver.amlg
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@
board board
player player
)
;sandbox execution using defaults
.true
;sandbox execution using defaults but constrain compute and memory a little more
{
max_node_operations 3000
max_node_allocations 2500
}
)

get_player_1_move
Expand Down
Loading