Making the core language more like Curnel
Previously, the core language of Cur, i.e. the default object language, was stupidly providing syntax sugar. E.g., both λ and lambda as syntax for functions. Now, the default object language is much closer to the Curnel, and this syntax sugar is moved to the sugar library.
This commit is contained in:
parent
961a5b7bb9
commit
ab6d62252f
|
@ -33,43 +33,44 @@ restricted impredicative universe.
|
||||||
Type]
|
Type]
|
||||||
}
|
}
|
||||||
|
|
||||||
@defform*[((lambda (id : type-expr) body-expr)
|
@defform[(λ (id : type-expr) body-expr)]{
|
||||||
(λ (id : type-expr) body-expr))]{
|
Produces a single-arity procedure, binding the identifier @racket[id] of type
|
||||||
Produces a single arity procedure, binding the identifier @racket[id] of type @racket[type-expr] in @racket[body-expr] and in the type of
|
@racket[type-expr] in @racket[body-expr] and in the type of @racket[body-expr].
|
||||||
@racket[body-expr].
|
Both @racket[type-expr] and @racket[body-expr] can contain non-curnel forms,
|
||||||
Both @racket[type-expr] and @racket[body-expr] can contain non-curnel forms, such as macros.
|
such as macros.
|
||||||
|
|
||||||
Currently, Cur will return the underlying representation of a procedure when a @racket[lambda] is
|
Currently, Cur will return the underlying representation of a procedure when a
|
||||||
evaluated at the top-level. Do not rely on this representation.
|
@racket[λ] is evaluated at the top-level.
|
||||||
|
Do not rely on this representation.
|
||||||
|
|
||||||
@examples[#:eval curnel-eval
|
@examples[#:eval curnel-eval
|
||||||
(lambda (x : Type) x)]
|
(λ (x : Type) x)]
|
||||||
|
|
||||||
@examples[#:eval curnel-eval
|
@examples[#:eval curnel-eval
|
||||||
(λ (x : Type) (lambda (y : x) y))]
|
(λ (x : Type) (λ (y : x) y))]
|
||||||
|
|
||||||
|
|
||||||
@defform[(#%app procedure argument)]{
|
@defform[(#%app procedure argument)]{
|
||||||
Applies the single arity @racket[procedure] to @racket[argument].
|
Applies the single-arity @racket[procedure] to @racket[argument].
|
||||||
}
|
}
|
||||||
|
|
||||||
@examples[#:eval curnel-eval
|
@examples[#:eval curnel-eval
|
||||||
((lambda (x : (Type 1)) x) Type)]
|
((λ (x : (Type 1)) x) Type)]
|
||||||
|
|
||||||
@examples[#:eval curnel-eval
|
@examples[#:eval curnel-eval
|
||||||
(#%app (lambda (x : (Type 1)) x) Type)]
|
(#%app (λ (x : (Type 1)) x) Type)]
|
||||||
}
|
}
|
||||||
|
|
||||||
@defform*[((forall (id : type-expr) body-expr)
|
@defform[(Π (id : type-expr) body-expr)]{
|
||||||
(∀ (id : type-expr) body-expr))]{
|
Produces a dependent function type, binding the identifier @racket[id] of type
|
||||||
Produces a dependent function type, binding the identifier @racket[id] of type @racket[type-expr] in @racket[body-expr].
|
@racket[type-expr] in @racket[body-expr].
|
||||||
|
|
||||||
|
|
||||||
@examples[#:eval curnel-eval
|
@examples[#:eval curnel-eval
|
||||||
(forall (x : Type) Type)]
|
(Π (x : Type) Type)]
|
||||||
|
|
||||||
@examples[#:eval curnel-eval
|
@examples[#:eval curnel-eval
|
||||||
(lambda (x : (forall (x : (Type 1)) Type))
|
(λ (x : (Π (x : (Type 1)) Type))
|
||||||
(x Type))]
|
(x Type))]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,10 +84,10 @@ For instance, Cur does not currently perform strict positivity checking.
|
||||||
(data Bool : Type
|
(data Bool : Type
|
||||||
(true : Bool)
|
(true : Bool)
|
||||||
(false : Bool))
|
(false : Bool))
|
||||||
((lambda (x : Bool) x) true)
|
((λ (x : Bool) x) true)
|
||||||
(data False : Type)
|
(data False : Type)
|
||||||
(data And : (forall (A : Type) (forall (B : Type) Type))
|
(data And : (Π (A : Type) (Π (B : Type) Type))
|
||||||
(conj : (forall (A : Type) (forall (B : Type) (forall (a : A) (forall (b : B) ((And A) B)))))))
|
(conj : (Π (A : Type) (Π (B : Type) (Π (a : A) (Π (b : B) ((And A) B)))))))
|
||||||
((((conj Bool) Bool) true) false)]
|
((((conj Bool) Bool) true) false)]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -103,11 +104,11 @@ The following example runs @racket[(sub1 (s z))].
|
||||||
@examples[#:eval curnel-eval
|
@examples[#:eval curnel-eval
|
||||||
(data Nat : Type
|
(data Nat : Type
|
||||||
(z : Nat)
|
(z : Nat)
|
||||||
(s : (forall (n : Nat) Nat)))
|
(s : (Π (n : Nat) Nat)))
|
||||||
(((((elim Nat Type)
|
(((((elim Nat Type)
|
||||||
(lambda (x : Nat) Nat))
|
(λ (x : Nat) Nat))
|
||||||
z)
|
z)
|
||||||
(lambda (n : Nat) (lambda (IH : Nat) n)))
|
(λ (n : Nat) (λ (IH : Nat) n)))
|
||||||
(s z))]
|
(s z))]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -117,11 +118,11 @@ Binds @racket[id] to the result of @racket[expr].
|
||||||
@examples[#:eval curnel-eval
|
@examples[#:eval curnel-eval
|
||||||
(data Nat : Type
|
(data Nat : Type
|
||||||
(z : Nat)
|
(z : Nat)
|
||||||
(s : (forall (n : Nat) Nat)))
|
(s : (Π (n : Nat) Nat)))
|
||||||
(define sub1 (lambda (n : Nat)
|
(define sub1 (λ (n : Nat)
|
||||||
(((((elim Nat Type) (lambda (x : Nat) Nat))
|
(((((elim Nat Type) (λ (x : Nat) Nat))
|
||||||
z)
|
z)
|
||||||
(lambda (n : Nat) (lambda (IH : Nat) n))) n)))
|
(λ (n : Nat) (λ (IH : Nat) n))) n)))
|
||||||
(sub1 (s (s z)))
|
(sub1 (s (s z)))
|
||||||
(sub1 (s z))
|
(sub1 (s z))
|
||||||
(sub1 z)]
|
(sub1 z)]
|
||||||
|
|
|
@ -25,8 +25,8 @@ phase 1 in Cur.}
|
||||||
|
|
||||||
@examples[
|
@examples[
|
||||||
(eval:alts (define-syntax-rule (computed-type _) Type) (void))
|
(eval:alts (define-syntax-rule (computed-type _) Type) (void))
|
||||||
(eval:alts (cur-expand #'(lambda (x : (computed-type bla)) x))
|
(eval:alts (cur-expand #'(λ (x : (computed-type bla)) x))
|
||||||
(eval:result @racket[#'(lambda (x : Type) x)] "" ""))
|
(eval:result @racket[#'(λ (x : Type) x)] "" ""))
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,8 +35,8 @@ phase 1 in Cur.}
|
||||||
Returns the type of the Cur term @racket[syn], or @racket[#f] if no type could be inferred.
|
Returns the type of the Cur term @racket[syn], or @racket[#f] if no type could be inferred.
|
||||||
|
|
||||||
@examples[
|
@examples[
|
||||||
(eval:alts (type-infer/syn #'(lambda (x : Type) x))
|
(eval:alts (type-infer/syn #'(λ (x : Type) x))
|
||||||
(eval:result @racket[#'(forall (x : (Type 0)) (Type 0))] "" ""))
|
(eval:result @racket[#'(Π (x : (Type 0)) (Type 0))] "" ""))
|
||||||
(eval:alts (type-infer/syn #'Type)
|
(eval:alts (type-infer/syn #'Type)
|
||||||
(eval:result @racket[#'(Type 1)] "" ""))
|
(eval:result @racket[#'(Type 1)] "" ""))
|
||||||
]
|
]
|
||||||
|
@ -47,7 +47,7 @@ Returns the type of the Cur term @racket[syn], or @racket[#f] if no type could b
|
||||||
Returns @racket[#t] if the Cur term @racket[syn] is well-typed, or @racket[#f] otherwise.
|
Returns @racket[#t] if the Cur term @racket[syn] is well-typed, or @racket[#f] otherwise.
|
||||||
|
|
||||||
@examples[
|
@examples[
|
||||||
(eval:alts (type-check/syn? #'(lambda (x : Type) x))
|
(eval:alts (type-check/syn? #'(λ (x : Type) x))
|
||||||
(eval:result @racket[#t] "" ""))
|
(eval:result @racket[#t] "" ""))
|
||||||
(eval:alts (type-check/syn? #'Type)
|
(eval:alts (type-check/syn? #'Type)
|
||||||
(eval:result @racket[#t] "" ""))
|
(eval:result @racket[#t] "" ""))
|
||||||
|
@ -61,7 +61,7 @@ Returns @racket[#t] if the Cur term @racket[syn] is well-typed, or @racket[#f] o
|
||||||
Runs the Cur term @racket[syn] to a value.
|
Runs the Cur term @racket[syn] to a value.
|
||||||
|
|
||||||
@examples[
|
@examples[
|
||||||
(eval:alts (normalize/syn #'((lambda (x : Type) x) Bool))
|
(eval:alts (normalize/syn #'((λ (x : Type) x) Bool))
|
||||||
(eval:result @racket[#'Bool] "" ""))
|
(eval:result @racket[#'Bool] "" ""))
|
||||||
(eval:alts (normalize/syn #'(sub1 (s (s z))))
|
(eval:alts (normalize/syn #'(sub1 (s (s z))))
|
||||||
(eval:result @racket[#'(s z)] "" ""))
|
(eval:result @racket[#'(s z)] "" ""))
|
||||||
|
@ -73,12 +73,12 @@ Runs the Cur term @racket[syn] to a value.
|
||||||
Runs the Cur term @racket[syn] for one step.
|
Runs the Cur term @racket[syn] for one step.
|
||||||
|
|
||||||
@examples[
|
@examples[
|
||||||
(eval:alts (step/syn #'((lambda (x : Type) x) Bool))
|
(eval:alts (step/syn #'((λ (x : Type) x) Bool))
|
||||||
(eval:result @racket[#'Bool] "" ""))
|
(eval:result @racket[#'Bool] "" ""))
|
||||||
(eval:alts (step/syn #'(sub1 (s (s z))))
|
(eval:alts (step/syn #'(sub1 (s (s z))))
|
||||||
(eval:result @racket[#'(((((elim Nat (Type 0))
|
(eval:result @racket[#'(((((elim Nat (Type 0))
|
||||||
(lambda (x2 : Nat) Nat)) z)
|
(λ (x2 : Nat) Nat)) z)
|
||||||
(lambda (x2 : Nat) (lambda (ih-n2 : Nat) x2)))
|
(λ (x2 : Nat) (λ (ih-n2 : Nat) x2)))
|
||||||
(s (s z)))] "" ""))
|
(s (s z)))] "" ""))
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -90,11 +90,11 @@ equal modulo α and β-equivalence.
|
||||||
@examples[
|
@examples[
|
||||||
|
|
||||||
|
|
||||||
(eval:alts (cur-equal? #'(lambda (a : Type) a) #'(lambda (b : Type) b))
|
(eval:alts (cur-equal? #'(λ (a : Type) a) #'(λ (b : Type) b))
|
||||||
(eval:result @racket[#t] "" ""))
|
(eval:result @racket[#t] "" ""))
|
||||||
(eval:alts (cur-equal? #'((lambda (a : Type) a) Bool) #'Bool)
|
(eval:alts (cur-equal? #'((λ (a : Type) a) Bool) #'Bool)
|
||||||
(eval:result @racket[#t] "" ""))
|
(eval:result @racket[#t] "" ""))
|
||||||
(eval:alts (cur-equal? #'(lambda (a : Type) (sub1 (s z))) #'(lambda (a : Type) z))
|
(eval:alts (cur-equal? #'(λ (a : Type) (sub1 (s z))) #'(λ (a : Type) z))
|
||||||
(eval:result @racket[#f] "" ""))
|
(eval:result @racket[#f] "" ""))
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -106,7 +106,7 @@ Converts @racket[s] to a datum representation of the @tech{curnel form}, after e
|
||||||
@examples[
|
@examples[
|
||||||
|
|
||||||
|
|
||||||
(eval:alts (cur-?datum #'(lambda (a : Type) a))
|
(eval:alts (cur->datum #'(λ (a : Type) a))
|
||||||
(eval:result @racket['(λ (a : (Unv 0) a))] "" ""))
|
(eval:result @racket['(λ (a : (Unv 0) a))] "" ""))
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,12 +21,15 @@ This library defines various syntactic extensions making Cur easier to write tha
|
||||||
@defform*[((-> decl decl ... type)
|
@defform*[((-> decl decl ... type)
|
||||||
(→ decl decl ... type)
|
(→ decl decl ... type)
|
||||||
(forall decl decl ... type)
|
(forall decl decl ... type)
|
||||||
(∀ decl decl ... type))
|
(∀ decl decl ... type)
|
||||||
|
(Π decl decl ... type)
|
||||||
|
(Pi decl decl ... type))
|
||||||
#:grammar
|
#:grammar
|
||||||
[(decl
|
[(decl
|
||||||
type
|
type
|
||||||
(code:line (identifier : type)))]]{
|
(code:line (identifier : type)))]]{
|
||||||
A multi-artiy function type that supports dependent and non-dependent type declarations and automatic currying.
|
A multi-artiy function type that supports dependent and non-dependent type declarations and automatic currying.
|
||||||
|
We provide lots of names for this form, because there are lots of synonyms in the literature.
|
||||||
|
|
||||||
@examples[#:eval curnel-eval
|
@examples[#:eval curnel-eval
|
||||||
(data And : (-> Type Type Type)
|
(data And : (-> Type Type Type)
|
||||||
|
|
|
@ -30,10 +30,10 @@
|
||||||
[dep-provide provide]
|
[dep-provide provide]
|
||||||
[dep-require require]
|
[dep-require require]
|
||||||
|
|
||||||
[dep-lambda lambda]
|
[dep-lambda λ]
|
||||||
[dep-app #%app]
|
[dep-app #%app]
|
||||||
|
|
||||||
[dep-forall forall]
|
[dep-forall Π]
|
||||||
|
|
||||||
[dep-inductive data]
|
[dep-inductive data]
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,12 @@
|
||||||
"stdlib/sugar.rkt"
|
"stdlib/sugar.rkt"
|
||||||
"stdlib/nat.rkt"
|
"stdlib/nat.rkt"
|
||||||
;; TODO: "real-"? More like "curnel-"
|
;; TODO: "real-"? More like "curnel-"
|
||||||
(only-in "cur.rkt" [#%app real-app] [elim real-elim] [forall real-forall] [lambda real-lambda]))
|
(only-in
|
||||||
|
"cur.rkt"
|
||||||
|
[#%app real-app]
|
||||||
|
[elim real-elim]
|
||||||
|
[Π real-forall]
|
||||||
|
[λ real-lambda]))
|
||||||
|
|
||||||
(provide
|
(provide
|
||||||
define-relation
|
define-relation
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
[-> →]
|
[-> →]
|
||||||
[-> forall]
|
[-> forall]
|
||||||
[-> ∀]
|
[-> ∀]
|
||||||
|
[-> Π]
|
||||||
|
[-> Pi]
|
||||||
[lambda λ])
|
[lambda λ])
|
||||||
#%app
|
#%app
|
||||||
define
|
define
|
||||||
|
@ -28,7 +30,8 @@
|
||||||
(only-in "../cur.rkt"
|
(only-in "../cur.rkt"
|
||||||
[elim real-elim]
|
[elim real-elim]
|
||||||
[#%app real-app]
|
[#%app real-app]
|
||||||
[lambda real-lambda]
|
[λ real-lambda]
|
||||||
|
[Π real-Π]
|
||||||
[define real-define]))
|
[define real-define]))
|
||||||
|
|
||||||
(begin-for-syntax
|
(begin-for-syntax
|
||||||
|
@ -51,7 +54,7 @@
|
||||||
[(_ d:parameter-declaration ...+ result:result-type)
|
[(_ d:parameter-declaration ...+ result:result-type)
|
||||||
(foldr (lambda (src name type r)
|
(foldr (lambda (src name type r)
|
||||||
(quasisyntax/loc src
|
(quasisyntax/loc src
|
||||||
(forall (#,name : #,type) #,r)))
|
(real-Π (#,name : #,type) #,r)))
|
||||||
#'result
|
#'result
|
||||||
(attribute d)
|
(attribute d)
|
||||||
(attribute d.name)
|
(attribute d.name)
|
||||||
|
@ -97,7 +100,7 @@
|
||||||
(define-syntax define-type
|
(define-syntax define-type
|
||||||
(syntax-rules ()
|
(syntax-rules ()
|
||||||
[(_ (name (a : t) ...) body)
|
[(_ (name (a : t) ...) body)
|
||||||
(define name (forall (a : t) ... body))]
|
(define name (-> (a : t) ... body))]
|
||||||
[(_ name type)
|
[(_ name type)
|
||||||
(define name type)]))
|
(define name type)]))
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
[(forall (x:id : P:expr) body:expr)
|
[(forall (x:id : P:expr) body:expr)
|
||||||
(let* ([ps (proof-state-extend-env ps name #'P)]
|
(let* ([ps (proof-state-extend-env ps name #'P)]
|
||||||
[ps (proof-state-current-goal-set ps #'body)]
|
[ps (proof-state-current-goal-set ps #'body)]
|
||||||
[ps (proof-state-fill-proof-hole ps (lambda (x) #`(lambda (#,name : P) #,x)))])
|
[ps (proof-state-fill-proof-hole ps (lambda (x) #`(λ (#,name : P) #,x)))])
|
||||||
ps)]
|
ps)]
|
||||||
[_ (error 'intro "Can only intro when current goal is of the form (∀ (x : P) body)")]))
|
[_ (error 'intro "Can only intro when current goal is of the form (∀ (x : P) body)")]))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user