More evaluation during type-checking

Replaces all identifiers with their definitions before type-checking.
Enables more type-checking, but *realllly* slows down type-checking.

Also a test case.
This commit is contained in:
William J. Bowman 2015-09-29 22:44:39 -04:00
parent a3c3b0fca7
commit fb7d351f12
No known key found for this signature in database
GPG Key ID: DDD48D26958F0D1A
2 changed files with 21 additions and 5 deletions

View File

@ -120,14 +120,17 @@
[exprs (second (bind-subst))]) [exprs (second (bind-subst))])
(bind-subst (list (cons x vars) (cons t exprs))))) (bind-subst (list (cons x vars) (cons t exprs)))))
(define (subst-bindings t)
(term (subst-all ,t ,(first (bind-subst)) ,(second (bind-subst)))))
;; TODO: Still absurdly slow. Probably doing n^2 checks of sigma and ;; TODO: Still absurdly slow. Probably doing n^2 checks of sigma and
;; gamma. And lookup on sigma, gamma are linear, so probably n^2 lookup time. ;; gamma. And lookup on sigma, gamma are linear, so probably n^2 lookup time.
(define (type-infer/term t) (define (type-infer/term t)
(let ([t (judgment-holds (type-infer ,(sigma) ,(gamma) ,t t_0) t_0)]) (let ([t (judgment-holds (type-infer ,(sigma) ,(gamma) ,(subst-bindings t) t_0) t_0)])
(and (pair? t) (car t)))) (and (pair? t) (car t))))
(define (type-check/term? e t) (define (type-check/term? e t)
(and (judgment-holds (type-check ,(sigma) ,(gamma) ,e ,t)) #t)) (and (judgment-holds (type-check ,(sigma) ,(gamma) ,(subst-bindings e) ,(subst-bindings t))) #t))
;; TODO: Blanket disarming is probably a bad idea. ;; TODO: Blanket disarming is probably a bad idea.
(define orig-insp (variable-reference->module-declaration-inspector (#%variable-reference))) (define orig-insp (variable-reference->module-declaration-inspector (#%variable-reference)))
@ -216,11 +219,12 @@
#,(datum->syntax syn t))])) #,(datum->syntax syn t))]))
(define (eval-cur syn) (define (eval-cur syn)
(term (reduce ,(sigma) (subst-all ,(cur->datum syn) ,(first (bind-subst)) ,(second (bind-subst)))))) (term (reduce ,(sigma) ,(subst-bindings (cur->datum syn)))))
(define (syntax->curnel-syntax syn) (define (syntax->curnel-syntax syn)
(quasisyntax/loc (quasisyntax/loc
syn syn
;; TODO: this subst-all should be #,(subst-bindings (cur->datum syn)), but doesn't work
(term (reduce #,(sigma) (subst-all #,(cur->datum syn) #,(first (bind-subst)) #,(second (bind-subst))))))) (term (reduce #,(sigma) (subst-all #,(cur->datum syn) #,(first (bind-subst)) #,(second (bind-subst)))))))
;; Reflection tools ;; Reflection tools
@ -233,7 +237,7 @@
(define (step/syn syn) (define (step/syn syn)
(datum->cur (datum->cur
syn syn
(term (step ,(sigma) (subst-all ,(cur->datum syn) ,(first (bind-subst)) ,(second (bind-subst))))))) (term (step ,(sigma) ,(subst-bindings (cur->datum syn))))))
;; Are these two terms equivalent in type-systems internal equational reasoning? ;; Are these two terms equivalent in type-systems internal equational reasoning?
(define (cur-equal? e1 e2) (define (cur-equal? e1 e2)

View File

@ -94,4 +94,16 @@
true true
true true
(refl Bool true)) (refl Bool true))
z)) z)
(define (id (A : Type) (x : A)) x)
(check-equal?
((id (== True T T))
(refl True (run (id True T))))
(refl True T))
(check-equal?
((id (== True T T))
(refl True (id True T)))
(refl True T)))