aboutsummaryrefslogtreecommitdiff
path: root/kernel/constant.mli
diff options
context:
space:
mode:
authorfilliatr1999-08-20 15:00:59 +0000
committerfilliatr1999-08-20 15:00:59 +0000
commite08245e74ef52395052b926fc39d79e52f59af09 (patch)
treed6e428173c43e01c852505da13d9b744cccbb49d /kernel/constant.mli
parent10f4e87cca4f83700c9b6a8acffc081de66dc164 (diff)
machine: execute = typage avec univers
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@18 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel/constant.mli')
-rw-r--r--kernel/constant.mli4
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/constant.mli b/kernel/constant.mli
index 4de51f8593..7f52f94d46 100644
--- a/kernel/constant.mli
+++ b/kernel/constant.mli
@@ -3,6 +3,7 @@
open Names
open Term
+open Sign
type discharge_recipe
@@ -13,7 +14,8 @@ type recipe =
type constant_body = {
const_kind : path_kind;
const_body : recipe ref option;
- const_type : type_judgment;
+ const_type : typed_type;
+ const_hyps : context;
mutable const_eval : ((int * constr) list * int * bool) option option;
}