aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/constant.ml
diff options
context:
space:
mode:
authorGravatar filliatr <filliatr@85f007b7-540e-0410-9357-904b9bb8a0f7>1999-10-13 12:36:57 +0000
committerGravatar filliatr <filliatr@85f007b7-540e-0410-9357-904b9bb8a0f7>1999-10-13 12:36:57 +0000
commit002d6cb09f2447134677b438ab09e880a2881151 (patch)
tree24ffa08aa1409f87da66216ec924f81357be7846 /kernel/constant.ml
parente148fce6fa35cc1bd3041ce18c87f5573f5bd596 (diff)
plus de recettes pour les corps des constantes
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@100 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel/constant.ml')
-rw-r--r--kernel/constant.ml12
1 files changed, 1 insertions, 11 deletions
diff --git a/kernel/constant.ml b/kernel/constant.ml
index 39eda93fc..c93d486fa 100644
--- a/kernel/constant.ml
+++ b/kernel/constant.ml
@@ -7,23 +7,13 @@ open Generic
open Term
open Sign
-type discharge_recipe = {
- d_expand : section_path list;
- d_modify : (sorts oper * sorts oper modification) list;
- d_abstract : identifier list;
- d_from : section_path }
-
-type recipe =
- | Cooked of constr
- | Recipe of discharge_recipe
-
type constant_entry = {
const_entry_body : constr;
const_entry_type : constr option }
type constant_body = {
const_kind : path_kind;
- const_body : recipe ref option;
+ const_body : constr option;
const_type : typed_type;
const_hyps : typed_type signature;
const_constraints : constraints;