Kind/book/Kind.equal.major.kind2
Victor Taelin 85ad65b026 use-notation
Now, there are two local binders:

let x = ...
use x = ...

The 'let' binder will create a local definition, type-check it, and
assign a name to it. When compiled, it will create 'dup' nodes.

The 'use' binder is just an alias. It will not bind a new variable, and,
when compiled, will create inline copies. Also, for type-checking, it
allows creating aliases that are definitionaly equal for the checker.
2024-03-08 17:39:37 -03:00

19 lines
461 B
Plaintext

Kind.equal.major
: ∀(e: Bool)
∀(a: Kind.Term)
∀(b: Kind.Term)
∀(dep: Nat)
Bool
= λe λa λb λdep
use P = λx ∀(a: Kind.Term) ∀(b: Kind.Term) ∀(dep: Nat) Bool
use true = λa λb λdep Bool.true
use false = λa λb λdep
use a_wnf = (Kind.reduce Bool.true a)
use b_wnf = (Kind.reduce Bool.true b)
(Kind.equal.enter
(Kind.identical a_wnf b_wnf dep)
a_wnf
b_wnf
dep
)
(~e P true false a b dep)