Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 29s
rev-acco is the standard tail-recursive reverse with an accumulator; rev-2o starts the accumulator at the empty list. Faster than the appendo-driven reverseo for forward queries because there is no nested appendo per element. Trade-off: rev-acco is asymmetric. The accumulator's initial-empty cannot be enumerated backwards the way reverseo does, so reverseo is still the right choice when both directions matter. A test verifies rev-2o and reverseo agree on forward queries. 6 new tests, 422/422 cumulative.
47 lines
1.0 KiB
Plaintext
47 lines
1.0 KiB
Plaintext
;; lib/minikanren/tests/rev-acco.sx — accumulator-style reverse.
|
|
;;
|
|
;; Faster than reverseo for forward queries (no quadratic appendos).
|
|
;; Trade-off: rev-acco is asymmetric (acc=initial-empty for the public
|
|
;; interface), so it does not cleanly run backwards in run* the way
|
|
;; reverseo does.
|
|
|
|
(mk-test "rev-2o-empty" (run* q (rev-2o (list) q)) (list (list)))
|
|
|
|
(mk-test
|
|
"rev-2o-singleton"
|
|
(run* q (rev-2o (list 7) q))
|
|
(list (list 7)))
|
|
|
|
(mk-test
|
|
"rev-2o-three"
|
|
(run* q (rev-2o (list 1 2 3) q))
|
|
(list (list 3 2 1)))
|
|
|
|
(mk-test
|
|
"rev-2o-five"
|
|
(run*
|
|
q
|
|
(rev-2o (list 1 2 3 4 5) q))
|
|
(list (list 5 4 3 2 1)))
|
|
|
|
(mk-test
|
|
"rev-2o-strings"
|
|
(run* q (rev-2o (list "a" "b" "c") q))
|
|
(list (list "c" "b" "a")))
|
|
|
|
(mk-test
|
|
"rev-2o-reverseo-agree"
|
|
(let
|
|
((via-reverseo (first (run* q (reverseo (list 1 2 3 4 5) q))))
|
|
(via-rev-2o
|
|
(first
|
|
(run*
|
|
q
|
|
(rev-2o
|
|
(list 1 2 3 4 5)
|
|
q)))))
|
|
(= via-reverseo via-rev-2o))
|
|
true)
|
|
|
|
(mk-tests-run!)
|