diff options
| author | msozeau | 2008-01-02 13:26:08 +0000 |
|---|---|---|
| committer | msozeau | 2008-01-02 13:26:08 +0000 |
| commit | 640a6d2f48ba07b51bcabc4235eaa4a497f4c263 (patch) | |
| tree | dc32022e578a0d8b15a5e442ba123428e4949768 /pretyping/typeclasses.mli | |
| parent | c47a4f906b9427c93db441de30dd69898d42d449 (diff) | |
Better resolution of implicit parameters in typeclass binders, add extensionality tactic to apply the axiom properly and fix test-suite.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10415 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'pretyping/typeclasses.mli')
| -rw-r--r-- | pretyping/typeclasses.mli | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pretyping/typeclasses.mli b/pretyping/typeclasses.mli index fbe48e06a2..f53ea7beac 100644 --- a/pretyping/typeclasses.mli +++ b/pretyping/typeclasses.mli @@ -24,8 +24,8 @@ open Util (* This module defines type-classes *) type typeclass = { cl_name : identifier; (* Name of the class *) - cl_context : named_context; (* Context in which superclasses and params are typed (usually types) *) - cl_super : named_context; (* Superclasses applied to some of the params *) + cl_context : named_context; (* Context in which superclasses and params are typed (usually types and indirect superclasses) *) + cl_super : named_context; (* Direct superclasses applied to some of the params *) cl_params : named_context; (* Context of the real parameters (types and operations) *) (* cl_defs : rel_context; (\* Context of the definitions (usually functions), which may be shared *\) *) cl_props : named_context; (* Context of the properties on defs, in Prop, will not be shared *) |
