aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib/cc/ccproof.mli
diff options
context:
space:
mode:
authorGravatar corbinea <corbinea@85f007b7-540e-0410-9357-904b9bb8a0f7>2006-09-19 13:32:22 +0000
committerGravatar corbinea <corbinea@85f007b7-540e-0410-9357-904b9bb8a0f7>2006-09-19 13:32:22 +0000
commitd41c622c861199c412c6215ec02854ffbba167d0 (patch)
treed8acdcf598df42ec2f5246b0ae15b6d801fa84ef /contrib/cc/ccproof.mli
parent054eb79100a145ecb2aad56dc87e30a1946d3d4b (diff)
added congruence improvement
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9151 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/cc/ccproof.mli')
-rw-r--r--contrib/cc/ccproof.mli7
1 files changed, 4 insertions, 3 deletions
diff --git a/contrib/cc/ccproof.mli b/contrib/cc/ccproof.mli
index 456d13e4b..75d801911 100644
--- a/contrib/cc/ccproof.mli
+++ b/contrib/cc/ccproof.mli
@@ -10,10 +10,11 @@
open Ccalgo
open Names
+open Term
type proof =
- Ax of identifier
- | SymAx of identifier
+ Ax of constr
+ | SymAx of constr
| Refl of term
| Trans of proof * proof
| Congr of proof * proof
@@ -25,6 +26,6 @@ val build_proof :
| `Prove of int * int ] -> proof
val type_proof :
- (identifier, (term * term)) Hashtbl.t -> proof -> term * term
+ (constr, (term * term)) Hashtbl.t -> proof -> term * term