aboutsummaryrefslogtreecommitdiff
path: root/src/nbe/Domain.ml
diff options
context:
space:
mode:
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;