apl: reduce f/ and f⌿ (last+first axis); 110/110 tests
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Has been cancelled

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-06 19:39:11 +00:00
parent e42aec8957
commit c5ceb9c718
3 changed files with 164 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ cat > "$TMPFILE" << 'EPOCHS'
(eval "(define apl-test (fn (name got expected) (if (= got expected) (set! apl-test-pass (+ apl-test-pass 1)) (begin (set! apl-test-fail (+ apl-test-fail 1)) (set! apl-test-fails (append apl-test-fails (list {:name name :got got :expected expected})))))))")
(epoch 3)
(load "lib/apl/tests/structural.sx")
(load "lib/apl/tests/operators.sx")
(epoch 4)
(eval "(list apl-test-pass apl-test-fail)")
EPOCHS