pi/src/Term.idr

69 lines
2.5 KiB
Idris

module Term
import Data.Nat
import Data.Vect
import Data.Fin
import Misc
%default total
{-
Can things be ereased?
-}
mutual
{-
The type of terms is indexed by the size of the environment in which
they are valid, that is, it is impossible to construct an ill-scoped term.
It is also indexed by the number of tags of the defined inductive types.
-}
public export
data Term : (ctx : Index) -> (tags : Vect n Nat) -> Type where
TType : Term n v -- Type of types
TLam : Term (S n) v -> Term n v -- Lambda (λ _ . #0)
TPi : Term n v -> Term (S n) v -> Term n v -- Pi type (∏ _ : #0 . #1 _ )
TApp : Term n v -> Term n v -> Term n v -- Appliction
TVar : Fin n -> Term n v -- Variable
TLet : Term n v -> Term n v -> Term (S n) v -> Term n v -- Let (let _ = #1 : #0 in #2)
TIDef : Inductive m n v -> Term n (m :: v) -> Term n v -- Inductive definition
TIType : Fin (len v) -> Term n v -- Inductive type
TIElim : Fin (len v) -> Term n v -- Inductive eliminator
TICons : (n : Fin (len v)) -> Fin (index n v) -> Term m v -- Inductive constructor
{-
The type of a constructor, indexed like terms
-}
public export
data Constructor : (ctx : Index) -> (tags : Vect n Nat) -> Type where
Tr : Term n v -> Constructor n v -- a term
Sum : Constructor n v -> Constructor (S n) v -> Constructor n v -- Σ _ : #0 , #1
{-
The type of an inductive definition. It is a vector of constructors.
It's indexed by the number of constructors as well as the indecies for terms.
-}
public export
Inductive : Nat -> Index -> Vect n Nat -> Type
Inductive cons ctx tags = Vect cons (Constructor ctx (cons :: tags))
{-
Use some different brackets to make it easier to read
-}
public export
Show (Term n v) where
show TType = "Type"
show (TLam sc) = "Lam {" ++ show sc ++ "}"
show (TPi ty sc) = "Pi [" ++ show ty ++ "] [" ++ show sc ++ "]"
show (TApp f x) = "App (" ++ show f ++ ") (" ++ show x ++ ")"
show (TVar i) = "Var " ++ show i
show (TLet tr ty sc) = "Let <" ++ show tr ++ "> : <" ++ show ty ++ "> in <" ++ show sc ++ ">"
show (TIDef _ t) = "IDef [...] in " ++ show t
show (TIType n) = "IType[#" ++ show n ++ "]"
show (TIElim n) = "IElim[#" ++ show n ++ "]"
show (TICons n m) = "ICons[#" ++ show n ++ "][#" ++ show m ++ "]"