aboutsummaryrefslogtreecommitdiff
path: root/kernel/constant.ml
diff options
context:
space:
mode:
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 39eda93fc1..c93d486faa 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;