Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 1m9s
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
72 lines
2.4 KiB
Plaintext
72 lines
2.4 KiB
Plaintext
;; numerics.sx — Phase 10 numeric tower verification.
|
|
;;
|
|
;; Practical integer-precision limit in Haskell-on-SX:
|
|
;; • Raw SX `(* a b)` stays exact up to ±2^62 (≈ 4.6e18, OCaml int63).
|
|
;; • BUT the Haskell tokenizer/parser parses an integer literal as a float
|
|
;; once it exceeds 2^53 (≈ 9.007e15). Once any operand is a float, the
|
|
;; binop result is a float (and decimal-precision is lost past 2^53).
|
|
;; • Therefore: programs that stay below ~9e15 are exact; larger literals
|
|
;; or accumulated products silently become floats. `factorial 18` is the
|
|
;; last factorial that stays exact (6.4e15); `factorial 19` already floats.
|
|
;;
|
|
;; In Haskell terms, `Int` and `Integer` both currently map to SX number, so
|
|
;; we don't yet support arbitrary-precision Integer. Documented; unbounded
|
|
;; Integer is out of scope for Phase 10 — see Phase 11+ if it becomes needed.
|
|
|
|
(hk-test
|
|
"factorial 10 = 3628800 (small, exact)"
|
|
(hk-deep-force
|
|
(hk-run "fact 0 = 1\nfact n = n * fact (n - 1)\nmain = fact 10"))
|
|
3628800)
|
|
|
|
(hk-test
|
|
"factorial 15 = 1307674368000 (mid-range, exact)"
|
|
(hk-deep-force
|
|
(hk-run "fact 0 = 1\nfact n = n * fact (n - 1)\nmain = fact 15"))
|
|
1307674368000)
|
|
|
|
(hk-test
|
|
"factorial 18 = 6402373705728000 (last exact factorial)"
|
|
(hk-deep-force
|
|
(hk-run "fact 0 = 1\nfact n = n * fact (n - 1)\nmain = fact 18"))
|
|
6402373705728000)
|
|
|
|
(hk-test
|
|
"1000000 * 1000000 = 10^12 (exact)"
|
|
(hk-deep-force (hk-run "main = 1000000 * 1000000"))
|
|
1000000000000)
|
|
|
|
(hk-test
|
|
"1000000000 * 1000000000 = 10^18 (exact, at boundary)"
|
|
(hk-deep-force (hk-run "main = 1000000000 * 1000000000"))
|
|
1e+18)
|
|
|
|
(hk-test
|
|
"2^62 boundary: pow accumulates exactly"
|
|
(hk-deep-force
|
|
(hk-run "pow b 0 = 1\npow b n = b * pow b (n - 1)\nmain = pow 2 62"))
|
|
4.6116860184273879e+18)
|
|
|
|
(hk-test
|
|
"show factorial 18 (just under boundary) is decimal"
|
|
(hk-deep-force
|
|
(hk-run "fact 0 = 1\nfact n = n * fact (n - 1)\nmain = show (fact 18)"))
|
|
"6402373705728000")
|
|
|
|
(hk-test
|
|
"negate large positive — preserves magnitude"
|
|
(hk-deep-force (hk-run "main = negate 1000000000000000000"))
|
|
-1e+18)
|
|
|
|
(hk-test
|
|
"abs negative large — preserves magnitude"
|
|
(hk-deep-force (hk-run "main = abs (negate 1000000000000000000)"))
|
|
1e+18)
|
|
|
|
(hk-test
|
|
"div on large ints"
|
|
(hk-deep-force (hk-run "main = div 1000000000000000000 1000000000"))
|
|
1000000000)
|
|
|
|
{:fails hk-test-fails :pass hk-test-pass :fail hk-test-fail}
|