ocaml: phase 5.1 queens.ml baseline (15/15 pass)
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 24s

4-queens via recursive backtracking + List.fold_left. Returns 2 (the
two solutions of 4-queens). Per-program timeout in run.sh bumped to
240s — the tree-walking interpreter is slow on heavy recursion but
correct.

The substrate handles full backtracking + safe-check recursion +
list-driven candidate enumeration end-to-end.
This commit is contained in:
2026-05-08 19:04:04 +00:00
parent 50a219b688
commit 360a3ed51f
4 changed files with 43 additions and 1 deletions

View File

@@ -10,6 +10,7 @@
"module_use.ml": 3,
"mutable_record.ml": 10,
"option_match.ml": 5,
"queens.ml": 2,
"quicksort.ml": 44,
"sum_squares.ml": 385,
"word_count.ml": 3