Files
rose-ash/lib/ocaml/baseline/expected.json
giles 30b237a891
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 23s
ocaml: phase 5.1 mod_inverse.ml baseline (extended Euclidean, inverse sum = 27)
Extended Euclidean returns a triple (gcd, x, y) such that
a*x + b*y = gcd:

  let rec ext_gcd a b =
    if b = 0 then (a, 1, 0)
    else
      let (g, x1, y1) = ext_gcd b (a mod b) in
      (g, y1, x1 - (a / b) * y1)

  let mod_inverse a m =
    let (_, x, _) = ext_gcd a m in
    ((x mod m) + m) mod m

Three invariants checked:

  inv(3, 11)  = 4      (3*4  = 12  = 1 mod 11)
  inv(5, 26)  = 21     (5*21 = 105 = 1 mod 26)
  inv(7, 13)  = 2      (7*2  = 14  = 1 mod 13)
  sum         = 27

Tests recursive triple-tuple return, tuple-pattern destructuring on
let-binding (with wildcard for unused fields), and nested
let-binding inside the recursive call site.

72 baseline programs total.
2026-05-09 15:11:46 +00:00

77 lines
1.6 KiB
JSON

{
"ackermann.ml": 125,
"anagram_check.ml": 2,
"anagrams.ml": 3,
"atm.ml": 120,
"bag.ml": 3,
"bf_full.ml": 6,
"bisect.ml": 141,
"bigint_add.ml": 28,
"bits.ml": 21,
"balance.ml": 3,
"base_n.ml": 17,
"bfs.ml": 6,
"btree.ml": 39,
"brainfuck.ml": 75,
"bsearch.ml": 7,
"caesar.ml": 215,
"calc.ml": 13,
"closures.ml": 315,
"coin_change.ml": 6,
"csv.ml": 10,
"exception_handle.ml": 4,
"exception_user.ml": 26,
"expr_eval.ml": 16,
"expr_simp.ml": 22,
"factorial.ml": 3628800,
"fraction.ml": 7,
"frequency.ml": 5,
"gcd_lcm.ml": 60,
"grep_count.ml": 3,
"group_consec.ml": 53,
"hailstone.ml": 111,
"hanoi.ml": 1023,
"hist.ml": 75,
"fizzbuzz.ml": 57,
"flatten_tree.ml": 28,
"list_ops.ml": 30,
"mat_mul.ml": 621,
"mod_inverse.ml": 27,
"json_pretty.ml": 24,
"kadane.ml": 6,
"lambda_calc.ml": 7,
"levenshtein.ml": 11,
"memo_fib.ml": 75025,
"mortgage.ml": 1073,
"merge_sort.ml": 44,
"module_use.ml": 3,
"newton_sqrt.ml": 1414,
"mutable_record.ml": 10,
"option_match.ml": 5,
"palindrome.ml": 4,
"pascal.ml": 252,
"pi_leibniz.ml": 314,
"prefix_sum.ml": 66,
"pretty_table.ml": 64,
"poly_stack.ml": 5,
"prime_factors.ml": 17,
"queens.ml": 2,
"quicksort.ml": 44,
"roman.ml": 44,
"rpn.ml": 9,
"run_length.ml": 11,
"safe_div.ml": 20,
"shuffle.ml": 55,
"subset_sum.ml": 8,
"tic_tac_toe.ml": 1,
"word_freq.ml": 8,
"zigzag.ml": 55,
"zip_unzip.ml": 1000,
"sieve.ml": 15,
"sum_squares.ml": 385,
"twosum.ml": 5,
"unique_set.ml": 9,
"validate.ml": 417,
"word_count.ml": 3
}