diff options
Diffstat (limited to 'contrib/cc/ccproof.ml')
-rw-r--r-- | contrib/cc/ccproof.ml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/contrib/cc/ccproof.ml b/contrib/cc/ccproof.ml index 1200dc2e..1ffa347a 100644 --- a/contrib/cc/ccproof.ml +++ b/contrib/cc/ccproof.ml @@ -6,18 +6,19 @@ (* * GNU Lesser General Public License Version 2.1 *) (************************************************************************) -(* $Id: ccproof.ml 7298 2005-08-17 12:56:38Z corbinea $ *) +(* $Id: ccproof.ml 9151 2006-09-19 13:32:22Z corbinea $ *) (* This file uses the (non-compressed) union-find structure to generate *) (* proof-trees that will be transformed into proof-terms in cctac.ml4 *) open Util open Names +open Term open Ccalgo 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 |