aboutsummaryrefslogtreecommitdiff
path: root/stlc-rec.rkt
diff options
context:
space:
mode:
authorJJ2024-10-24 00:26:11 +0000
committerJJ2024-10-24 00:51:25 +0000
commit7e2cb02cb9e846b9502de7f677e69ebcc710cdce (patch)
tree28f0437766b404c246422d8d188db6021a16474b /stlc-rec.rkt
parent9b1389448b5e29e2baa8a48e5e9c4b24bae207c9 (diff)
refactor all implementations to use contracts
Diffstat (limited to 'stlc-rec.rkt')
-rw-r--r--stlc-rec.rkt99
1 files changed, 58 insertions, 41 deletions
diff --git a/stlc-rec.rkt b/stlc-rec.rkt
index 84103bb..3266150 100644
--- a/stlc-rec.rkt
+++ b/stlc-rec.rkt
@@ -5,87 +5,104 @@
;; The Simply-Typed Lambda Calculus with iso-recursive types
-; Γ ⊢ e: [x ↦ μx.t] t
-; ------------------------
-; Γ ⊢ fold [μx.t] e: μx.t
-
-; Γ ⊢ e: μx.t
-; -----------------------------------
-; Γ ⊢ unfold [μx.t] e: [x ↦ μx.t] t
-
-;; (interpret Expr Table[Sym, Expr]): Value
+;; Checks an expression for syntactic well-formedness.
+(define (stlc-rec/expr? expr)
+ (match expr
+ [x #:when (symbol? x) #t]
+ [(or `(fold ,e) `(unfold ,e)) (stlc-rec/expr? e)]
+ [`(,e1 ,e2) (and (stlc-rec/expr? e1) (stlc-rec/expr? e2))]
+ [`(λ (,x : ,t) ,e) (and (symbol? x) (stlc-rec/type? t) (stlc-rec/expr? e))]
+ [_ #f]))
+
+;; Checks a type for syntactic well-formedness.
+(define (stlc-rec/type? type)
+ (match type
+ [t #:when (symbol? t) #t]
+ [`(,t1 → ,t2) (and (stlc-rec/type? t1) (stlc-rec/type? t2))]
+ [_ #f]))
+
+;; Checks a value for syntactic well-formedness.
+(define (stlc-rec/value? value)
+ (match value
+ [x #:when (symbol? x) #t]
+ [`(,v1 ,v2) (and (stlc-rec/value? v1) (stlc-rec/value? v2))]
+ [`(λ ,x ,e ,env) (and (symbol? x) (stlc-rec/expr? e) (dict? env))]
+ [_ #f]))
+
+;; Interprets an expression down to a value, in a given context.
(define (interpret expr)
- (interpret-core (strip (desugar expr)) #hash()))
-(define (interpret-core expr Γ)
+ (interpret/core (desugar expr) #hash()))
+(define/contract (interpret/core expr Γ)
+ (-> stlc-rec/expr? dict? stlc-rec/value?)
(match expr
['sole 'sole]
- [n #:when (natural? n) n]
[x #:when (dict-has-key? Γ x) (dict-ref Γ x)]
+ [n #:when (natural? n) n]
+ [f #:when (symbol? f) f]
- [`(fold ,e) `(fold ,(interpret-core e Γ))]
+ [`(fold ,e) `(fold ,(interpret/core e Γ))]
[`(unfold ,e)
- (match (interpret-core e Γ)
+ (match (interpret/core e Γ)
[`(fold ,e) e]
[e `(unfold e)])]
- [`(λ ,x ,e) `(λ ,x ,e ,Γ)]
+ [`(λ (,x : ,t) ,e) `(λ ,x ,e ,Γ)]
[`(,e1 ,e2)
- (match (interpret-core e1 Γ)
+ (match (interpret/core e1 Γ)
[`(λ ,x ,e ,env)
- (interpret-core e (dict-set env x (interpret-core e2 Γ)))]
- [e (err (format "applying arg ~a to unknown expression ~a" e2 e))])]
-
- [e (err (format "interpreting an unknown expression ~a" e))]))
+ (interpret/core e (dict-set env x (interpret/core e2 Γ)))]
+ [e (err (format "applying arg ~a to unknown expression ~a" e2 e))])]))
-;; (check Expr Type Table[Sym, Type]): Bool
+;; Checks an expression against some type, in a given context.
(define (check expr with)
- (check-core (desugar expr) with #hash()))
-(define (check-core expr with Γ)
+ (check/core (desugar expr) with #hash()))
+(define/contract (check/core expr with Γ)
+ (-> stlc-rec/expr? stlc-rec/type? dict? boolean?)
(match expr
[`(fold (μ ,x ,t) ,e)
(match with
- [`(μ ,x ,t) (check-core e t (dict-set Γ x `(μ ,x ,t)))]
+ [`(μ ,x ,t) (check/core e t (dict-set Γ x `(μ ,x ,t)))]
[_ #f])]
[`(λ (,x : ,t) ,e)
(match with
[`(,t1 → ,t2)
- (and (equal? t1 t) (check-core e t2 (dict-set Γ x t1)))]
+ (and (equal? t1 t) (check/core e t2 (dict-set Γ x t1)))]
[_ #f])]
- [_ (equal? (infer-core expr Γ) with)]))
+ [_ (equal? (infer/core expr Γ) with)]))
-;; (infer Expr Table[Sym, Type]): Type
+;; Infers a type from some expression, in a given context.
(define (infer expr)
- (infer-core (desugar expr) #hash()))
-(define (infer-core expr Γ)
+ (infer/core (desugar expr) #hash()))
+(define/contract (infer/core expr Γ)
+ (-> stlc-rec/expr? dict? stlc-rec/type?)
(match expr
['sole 'Unit]
- [n #:when (natural? n) 'Nat]
- [b #:when (boolean? b) 'Bool]
[x #:when (dict-has-key? Γ x)
(dict-ref Γ x)]
+ [b #:when (boolean? b) 'Bool]
+ [n #:when (natural? n) 'Nat]
+ [f #:when (symbol? f)
+ (err (format "attempting to infer type of free variable ~a" f))]
[`(fold (μ ,x ,t) ,e)
- (if (check-core e t (dict-set Γ x `(μ ,x ,t))) `(μ ,x ,t)
+ (if (check/core e t (dict-set Γ x `(μ ,x ,t))) `(μ ,x ,t)
(err (format "expected ~a to be of type ~a, got ~a"
e t (infer e (dict-set Γ x `(μ ,x ,t))))))]
[`(unfold (μ ,x ,t) ,e)
- (if (check-core e `(μ ,x ,t)) (replace t x `(μ ,x ,t))
+ (if (check/core e `(μ ,x ,t)) (replace t x `(μ ,x ,t))
(err (format "expected ~a to be of type ~a, got ~a"
- e `(μ ,x ,t) (infer-core e Γ))))]
+ e `(μ ,x ,t) (infer/core e Γ))))]
[`(λ (,x : ,t) ,e)
- `(,t → ,(infer-core e (dict-set Γ x t)))]
-
+ `(,t → ,(infer/core e (dict-set Γ x t)))]
[`(,e1 ,e2)
- (match (infer-core e1 Γ)
+ (match (infer/core e1 Γ)
[`(,t1 → ,t2)
- (if (check-core e2 t1 Γ) t2
+ (if (check/core e2 t1 Γ) t2
(err (format "inferred argument type ~a does not match arg ~a" t1 e2)))]
- [t (err (format "expected → type on application body, got ~a" t))])]
-
- [e (err (format "attempting to infer an unknown expression ~a" e))]))
+ [t (err (format "expected → type on application body, got ~a" t))])]))
;; Replace all references to an expression with a value.
(define (replace expr key value)