diff options
Diffstat (limited to 'plugins/cc/cctac.mli')
-rw-r--r-- | plugins/cc/cctac.mli | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/cc/cctac.mli b/plugins/cc/cctac.mli new file mode 100644 index 00000000..7ed077bd --- /dev/null +++ b/plugins/cc/cctac.mli @@ -0,0 +1,22 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *) +(* \VV/ **************************************************************) +(* // * This file is distributed under the terms of the *) +(* * GNU Lesser General Public License Version 2.1 *) +(************************************************************************) + +(* $Id$ *) + +open Term +open Proof_type + +val proof_tac: Ccproof.proof -> Proof_type.tactic + +val cc_tactic : int -> constr list -> tactic + +val cc_fail : tactic + +val congruence_tac : int -> constr list -> tactic + +val f_equal : tactic |