diff options
| author | herbelin | 2000-10-18 17:51:58 +0000 |
|---|---|---|
| committer | herbelin | 2000-10-18 17:51:58 +0000 |
| commit | edfda2501f08f18e24bd2e3eca763eb1c2dec0ea (patch) | |
| tree | e4c42c670c2f61b95a7a0f68fd96f635aeef8b2b /kernel/declarations.ml | |
| parent | a586cb418549eb523a3395155cab2560fd178571 (diff) | |
Simplifications autour de typed_type (renommé types par analogie avec sorts); documentation
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@727 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel/declarations.ml')
| -rw-r--r-- | kernel/declarations.ml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kernel/declarations.ml b/kernel/declarations.ml index 3b2ba2ecef..883e20f3f4 100644 --- a/kernel/declarations.ml +++ b/kernel/declarations.ml @@ -18,7 +18,7 @@ type constant_value = lazy_constant_value ref type constant_body = { const_kind : path_kind; const_body : constant_value option; - const_type : typed_type; + const_type : types; const_hyps : named_context; const_constraints : constraints; mutable const_opaque : bool } @@ -47,11 +47,11 @@ type recarg = type one_inductive_body = { mind_consnames : identifier array; mind_typename : identifier; - mind_nf_lc : typed_type array; - mind_nf_arity : typed_type; + mind_nf_lc : types array; + mind_nf_arity : types; (* lc and arity as given by user if not in nf; useful e.g. for Ensemble.v *) - mind_user_lc : typed_type array option; - mind_user_arity : typed_type option; + mind_user_lc : types array option; + mind_user_arity : types option; mind_sort : sorts; mind_nrealargs : int; mind_kelim : sorts list; |
