Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 53s
Pattern grammar: _, symbol, atom (number/string/keyword/bool), (), and (p1 ... pn) list patterns (recursive). Symbols become fresh vars in a fresh form, atoms become literals to unify against, lists recurse position-wise. Repeated names produce the same fresh var (so they unify by ==). Macro is built with explicit cons/list rather than a quasiquote because the quasiquote expander does not recurse into nested lambda bodies — the natural `\`(matche-clause (quote ,target) cl)` spelling left literal `(unquote target)` forms in the output. 14 tests, 222/222 cumulative. Phase 5 done (project, conda, condu, onceo, nafc, matche all green).
75 lines
2.3 KiB
Plaintext
75 lines
2.3 KiB
Plaintext
;; lib/minikanren/matche.sx — Phase 5 piece D: pattern matching over terms.
|
|
;;
|
|
;; (matche TARGET
|
|
;; (PATTERN1 g1 g2 ...)
|
|
;; (PATTERN2 g1 ...)
|
|
;; ...)
|
|
;;
|
|
;; Each clause unifies TARGET with PATTERN, introducing a fresh variable
|
|
;; for every plain symbol in the pattern, and runs its goal body. The
|
|
;; pattern grammar:
|
|
;;
|
|
;; _ wildcard — fresh anonymous var
|
|
;; x plain symbol — fresh var, bind by name
|
|
;; ATOM literal (number, string, keyword, boolean) — must equal
|
|
;; () empty list — must equal
|
|
;; (p1 p2 ... pn) list pattern — recurse on each element
|
|
;;
|
|
;; The macro expands to a `conde` whose clauses are
|
|
;; `((fresh (vars...) (== target pat-expr) body...))`.
|
|
;;
|
|
;; Fixed-length list patterns only — no rest patterns. To match "head + rest",
|
|
;; use `(fresh (a d) (conso a d target) body)` directly.
|
|
;;
|
|
;; Note: the macro builds the expansion via `cons` / `list` rather than a
|
|
;; quasiquote — the quasiquote expander does not recurse into lambda
|
|
;; bodies, which broke the natural `\`(matche-clause (quote ,target) cl)`
|
|
;; spelling.
|
|
|
|
(define matche-symbol-var? (fn (s) (symbol? s)))
|
|
|
|
(define
|
|
matche-collect-vars
|
|
(fn (pat) (matche-collect-vars-acc pat (list))))
|
|
|
|
(define
|
|
matche-collect-vars-acc
|
|
(fn
|
|
(pat acc)
|
|
(cond
|
|
((matche-symbol-var? pat)
|
|
(if (some (fn (s) (= s pat)) acc) acc (append acc (list pat))))
|
|
((and (list? pat) (not (empty? pat)))
|
|
(reduce (fn (a p) (matche-collect-vars-acc p a)) acc pat))
|
|
(:else acc))))
|
|
|
|
(define
|
|
matche-pattern->expr
|
|
(fn
|
|
(pat)
|
|
(cond
|
|
((matche-symbol-var? pat) pat)
|
|
((and (list? pat) (empty? pat)) (list (quote list)))
|
|
((list? pat) (cons (quote list) (map matche-pattern->expr pat)))
|
|
(:else (list (quote quote) pat)))))
|
|
|
|
(define
|
|
matche-clause
|
|
(fn
|
|
(target cl)
|
|
(let
|
|
((pat (first cl)) (body (rest cl)))
|
|
(let
|
|
((vars (matche-collect-vars pat)))
|
|
(let
|
|
((pat-expr (matche-pattern->expr pat)))
|
|
(list
|
|
(cons
|
|
(quote fresh)
|
|
(cons vars (cons (list (quote ==) target pat-expr) body)))))))))
|
|
|
|
(defmacro
|
|
matche
|
|
(target &rest clauses)
|
|
(cons (quote conde) (map (fn (cl) (matche-clause target cl)) clauses)))
|