Fixed issues w/ α-equivalence tests and telescopes

This commit is contained in:
William J. Bowman 2016-01-08 20:04:57 -05:00
parent cfa81e3508
commit 15593e1c98
No known key found for this signature in database
GPG Key ID: DDD48D26958F0D1A

View File

@ -118,7 +118,7 @@
----------------- -----------------
(unv-type (Unv i_0) (Unv i_1))]) (unv-type (Unv i_0) (Unv i_1))])
;; Universe predicativity rules. Impredicative in (Unv 0) ;; Universe predicativity rules. Impredicative in (Unv 0)
(define-judgment-form ttL (define-judgment-form ttL
#:mode (unv-pred I I O) #:mode (unv-pred I I O)
#:contract (unv-pred U U U) #:contract (unv-pred U U U)
@ -131,11 +131,12 @@
(unv-pred (Unv i_1) (Unv i_2) (Unv i_3))]) (unv-pred (Unv i_1) (Unv i_2) (Unv i_3))])
(define-metafunction ttL (define-metafunction ttL
α-equivalent? : t t -> #t or #f
[(α-equivalent? t_0 t_1) [(α-equivalent? t_0 t_1)
,(alpha-equivalent? ttL (term t_0) (term t_1))]) ,(alpha-equivalent? ttL (term t_0) (term t_1))])
(module+ test (module+ test
(default-equiv (lambda (x y) (term (α-equivalent ,x ,y))))) (default-equiv (lambda (x y) (term (α-equivalent? ,x ,y)))))
;; Replace x by t_1 in t_0 ;; Replace x by t_1 in t_0
(define-metafunction ttL (define-metafunction ttL
@ -261,6 +262,15 @@
(define Φ? (redex-match? tt-ctxtL Φ)) (define Φ? (redex-match? tt-ctxtL Φ))
(define Θ? (redex-match? tt-ctxtL Θ)) (define Θ? (redex-match? tt-ctxtL Θ))
(module+ test
;; Are these telescopes the same when filled with alpha-equivalent, and equivalently renamed, termed
(define (telescope-equiv x y)
(alpha-equivalent? ttL (term (in-hole ,x (Unv 0))) (term (in-hole ,y (Unv 0)))))
(define-syntax-rule (check-telescope-equiv? e1 e2)
(check telescope-equiv e1 e2))
(define-syntax-rule (check-telescope-not-equiv? e1 e2)
(check (compose not telescope-equiv) e1 e2)))
;; TODO: Might be worth it to actually maintain the above bijections, for performance reasons. ;; TODO: Might be worth it to actually maintain the above bijections, for performance reasons.
;; Return the parameters of x_D as a telescope Ξ ;; Return the parameters of x_D as a telescope Ξ
@ -273,10 +283,10 @@
(Δ-ref-parameter-Ξ Δ x_D)]) (Δ-ref-parameter-Ξ Δ x_D)])
(module+ test (module+ test
(check-equiv? (check-telescope-equiv?
(term (Δ-ref-parameter-Ξ ,Δ nat)) (term (Δ-ref-parameter-Ξ ,Δ nat))
(term hole)) (term hole))
(check-equiv? (check-telescope-equiv?
(term (Δ-ref-parameter-Ξ ,Δ4 and)) (term (Δ-ref-parameter-Ξ ,Δ4 and))
(term (Π (A : Type) (Π (B : Type) hole))))) (term (Π (A : Type) (Π (B : Type) hole)))))
@ -300,7 +310,7 @@
(Ξ-compose (in-hole Ξ_0 Ξ_1) Ξ_rest ...)]) (Ξ-compose (in-hole Ξ_0 Ξ_1) Ξ_rest ...)])
(module+ test (module+ test
(check-equiv? (check-telescope-equiv?
(term (Ξ-compose (term (Ξ-compose
(Π (x : t_0) (Π (y : t_1) hole)) (Π (x : t_0) (Π (y : t_1) hole))
(Π (z : t_2) (Π (a : t_3) hole)))) (Π (z : t_2) (Π (a : t_3) hole))))
@ -419,21 +429,21 @@
(method-loop Δ x_D t_P (Δ-ref-constructors Δ x_D))]) (method-loop Δ x_D t_P (Δ-ref-constructors Δ x_D))])
(module+ test (module+ test
(check-equiv? (check-telescope-equiv?
(term (Δ-methods-telescope ,Δ nat (λ (x : nat) nat))) (term (Δ-methods-telescope ,Δ nat (λ (x : nat) nat)))
(term (Π (m-zero : ((λ (x : nat) nat) zero)) (term (Π (m-zero : ((λ (x : nat) nat) zero))
(Π (m-s : (Π (x : nat) (Π (x-ih : ((λ (x : nat) nat) x)) ((λ (x : nat) nat) (s x))))) hole)))) (Π (m-s : (Π (x : nat) (Π (x-ih : ((λ (x : nat) nat) x)) ((λ (x : nat) nat) (s x))))) hole))))
(check-equiv? (check-telescope-equiv?
(term (Δ-methods-telescope ,Δ nat P)) (term (Δ-methods-telescope ,Δ nat P))
(term (Π (m-zero : (P zero)) (term (Π (m-zero : (P zero))
(Π (m-s : (Π (x : nat) (Π (ih-x : (P x)) (P (s x))))) (Π (m-s : (Π (x : nat) (Π (ih-x : (P x)) (P (s x)))))
hole)))) hole))))
(check-equiv? (check-telescope-equiv?
(term (Δ-methods-telescope ,Δ nat (λ (x : nat) nat))) (term (Δ-methods-telescope ,Δ nat (λ (x : nat) nat)))
(term (Π (m-zero : ((λ (x : nat) nat) zero)) (term (Π (m-zero : ((λ (x : nat) nat) zero))
(Π (m-s : (Π (x : nat) (Π (ih-x : ((λ (x : nat) nat) x)) ((λ (x : nat) nat) (s x))))) (Π (m-s : (Π (x : nat) (Π (ih-x : ((λ (x : nat) nat) x)) ((λ (x : nat) nat) (s x)))))
hole)))) hole))))
(check-equiv? (check-telescope-equiv?
(term (Δ-methods-telescope ,Δ4 and (λ (A : Type) (λ (B : Type) (λ (x : ((and A) B)) true))))) (term (Δ-methods-telescope ,Δ4 and (λ (A : Type) (λ (B : Type) (λ (x : ((and A) B)) true)))))
(term (Π (m-conj : (Π (A : Type) (Π (B : Type) (Π (a : A) (Π (b : B) (term (Π (m-conj : (Π (A : Type) (Π (B : Type) (Π (a : A) (Π (b : B)
((((λ (A : Type) (λ (B : Type) (λ (x : ((and A) B)) true))) ((((λ (A : Type) (λ (B : Type) (λ (x : ((and A) B)) true)))
@ -445,7 +455,7 @@
(check-true (Ξ? (term hole))) (check-true (Ξ? (term hole)))
(check-true (t? (term (λ (y : false) (Π (x : Type) x))))) (check-true (t? (term (λ (y : false) (Π (x : Type) x)))))
(check-true (redex-match? ttL ((x : t) ...) (term ()))) (check-true (redex-match? ttL ((x : t) ...) (term ())))
(check-equiv? (check-telescope-equiv?
(term (Δ-methods-telescope ,sigma false (λ (y : false) (Π (x : Type) x)))) (term (Δ-methods-telescope ,sigma false (λ (y : false) (Π (x : Type) x))))
(term hole))) (term hole)))
@ -505,7 +515,7 @@
(module+ test (module+ test
(check-true (check-true
(redex-match? tt-ctxtL (in-hole Θ_i (hole (in-hole Θ_r zero))) (term (hole zero)))) (redex-match? tt-ctxtL (in-hole Θ_i (hole (in-hole Θ_r zero))) (term (hole zero))))
(check-equiv? (check-telescope-equiv?
(term (Δ-inductive-elim ,Δ nat Type (λ (x : nat) nat) hole (term (Δ-inductive-elim ,Δ nat Type (λ (x : nat) nat) hole
((hole (s zero)) (λ (x : nat) (λ (ih-x : nat) (s (s x))))) ((hole (s zero)) (λ (x : nat) (λ (ih-x : nat) (s (s x)))))
(hole zero))) (hole zero)))
@ -513,7 +523,7 @@
(s zero)) (s zero))
(λ (x : nat) (λ (ih-x : nat) (s (s x))))) (λ (x : nat) (λ (ih-x : nat) (s (s x)))))
zero)))) zero))))
(check-equiv? (check-telescope-equiv?
(term (Δ-inductive-elim ,Δ nat Type (λ (x : nat) nat) hole (term (Δ-inductive-elim ,Δ nat Type (λ (x : nat) nat) hole
((hole (s zero)) (λ (x : nat) (λ (ih-x : nat) (s (s x))))) ((hole (s zero)) (λ (x : nat) (λ (ih-x : nat) (s (s x)))))
(hole (s zero)))) (hole (s zero))))
@ -682,8 +692,7 @@
(check-equivalent (check-equivalent
(λ (x : Type) x) (λ (y : Type) y)) (λ (x : Type) x) (λ (y : Type) y))
(check-equivalent (check-equivalent
(Π (x : Type) x) (Π (y : Type) y)) (Π (x : Type) x) (Π (y : Type) y)))
)
;;; ------------------------------------------------------------------------ ;;; ------------------------------------------------------------------------
;;; Type checking and synthesis ;;; Type checking and synthesis
@ -931,7 +940,7 @@
(check-holds (type-infer ,Δtruth (λ (x : truth) (Unv 1)) (check-holds (type-infer ,Δtruth (λ (x : truth) (Unv 1))
(in-hole Ξ (Π (x : (in-hole Θ truth)) U)))) (in-hole Ξ (Π (x : (in-hole Θ truth)) U))))
(check-equiv? (check-telescope-equiv?
(term (Δ-methods-telescope ,Δtruth truth (λ (x : truth) (Unv 1)))) (term (Δ-methods-telescope ,Δtruth truth (λ (x : truth) (Unv 1))))
(term (Π (m-T : ((λ (x : truth) (Unv 1)) T)) hole))) (term (Π (m-T : ((λ (x : truth) (Unv 1)) T)) hole)))
(check-holds (type-infer ,Δtruth (elim truth Type) t)) (check-holds (type-infer ,Δtruth (elim truth Type) t))
@ -1228,7 +1237,7 @@
(in-hole (Θ_p (in-hole Θ_i x_ci)) Θ_m) (in-hole (Θ_p (in-hole Θ_i x_ci)) Θ_m)
(term (((((hole (term (((((hole
(λ (A1 : (Unv 0)) (λ (x1 : A1) zero))) bool) true) true) ((refl bool) true))))) (λ (A1 : (Unv 0)) (λ (x1 : A1) zero))) bool) true) true) ((refl bool) true)))))
(check-equiv? (check-telescope-equiv?
(term (Δ-ref-parameter-Ξ ,Δ= ==)) (term (Δ-ref-parameter-Ξ ,Δ= ==))
(term (Π (A : Type) (Π (a : A) (Π (b : A) hole))))) (term (Π (A : Type) (Π (a : A) (Π (b : A) hole)))))
(check-equal? (check-equal?