aboutsummaryrefslogtreecommitdiff
path: root/kernel/term.mli
diff options
context:
space:
mode:
authorfilliatr1999-10-13 12:34:30 +0000
committerfilliatr1999-10-13 12:34:30 +0000
commite148fce6fa35cc1bd3041ce18c87f5573f5bd596 (patch)
treed5d76a6329730cbb99420071791c57046930bf64 /kernel/term.mli
parentb5f6cce3f1aee416e5010a0a38f0508f107cd61e (diff)
- re-introduction d'une evar_map dans unsafe_env
- les var. ex. sont des entiers, et non plus des section_path git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@99 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel/term.mli')
-rw-r--r--kernel/term.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/term.mli b/kernel/term.mli
index 8622b8f3f9..8e16e8fbc3 100644
--- a/kernel/term.mli
+++ b/kernel/term.mli
@@ -15,7 +15,7 @@ type 'a oper =
| Sort of 'a
| Cast | Prod | Lambda
| AppL | Const of section_path | Abst of section_path
- | Evar of section_path
+ | Evar of int
| MutInd of section_path * int
| MutConstruct of (section_path * int) * int
| MutCase of case_info
@@ -78,7 +78,7 @@ type kindOfTerm =
| IsAppL of constr array
| IsConst of section_path * constr array
| IsAbst of section_path * constr array
- | IsEvar of section_path * constr array
+ | IsEvar of int * constr array
| IsMutInd of section_path * int * constr array
| IsMutConstruct of section_path * int * int * constr array
| IsMutCase of case_info * constr * constr * constr array