about summary refs log tree commit diff
path: root/src/nbe/Domain.ml
diff options
context:
space:
mode:
authorMalte Voos <git@mal.tc>2024-07-08 22:10:12 +0200
committerMalte Voos <git@mal.tc>2024-07-08 22:10:12 +0200
commit66cf5d3c5fff84a1cac333c1aa81a8e1f21ee6f4 (patch)
treebfbd237f12a3b973d0b93556e6235ced045db701 /src/nbe/Domain.ml
parent97f84ccace4e634b4e02178a702818e69292dc9f (diff)
downloadtoytt-66cf5d3c5fff84a1cac333c1aa81a8e1f21ee6f4.tar.gz
toytt-66cf5d3c5fff84a1cac333c1aa81a8e1f21ee6f4.zip
rename Ident -> Name
Diffstat (limited to 'src/nbe/Domain.ml')
-rw-r--r--src/nbe/Domain.ml10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nbe/Domain.ml b/src/nbe/Domain.ml
index bf5ed90..f0922e8 100644
--- a/src/nbe/Domain.ml
+++ b/src/nbe/Domain.ml
@@ -3,9 +3,9 @@ open Bwd
 type t = Data.value =
   | Neutral of ne
   | Unfold of unfold
-  | Pi of Ident.local * t * clo
-  | Lam of Ident.local * clo
-  | Sg of Ident.local * t * clo
+  | Pi of Name.local * t * clo
+  | Lam of Name.local * clo
+  | Sg of Name.local * t * clo
   | Pair of t * t
   | Type
   | Bool
@@ -18,14 +18,14 @@ and ne_head = Data.ne_head =
 
 and unfold = Data.unfold
 and unfold_head = Data.unfold_head =
-  | Def of Ident.t * t Lazy.t
+  | Def of Name.t * t Lazy.t
 
 and frm = Data.frm =
   | App of t
   | Fst
   | Snd
   | BoolElim of {
-      motive_var : Ident.local;
+      motive_var : Name.local;
       motive : clo;
       true_case : t;
       false_case: t;