aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/eqdecide.mli
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-03-26 13:33:54 +0100
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-03-26 13:33:54 +0100
commit89af6fc3f3940cb03553c403432dfff52e6d8d7a (patch)
treeb4e26af746b80b5bfaef2cbf0ce476f87a6949ee /tactics/eqdecide.mli
parent1dccf4412cf9f5903c6291e08f2001c895babfd1 (diff)
Adding an interface to Eqdecide and putting the grammar rules in a dedicated
file.
Diffstat (limited to 'tactics/eqdecide.mli')
-rw-r--r--tactics/eqdecide.mli17
1 files changed, 17 insertions, 0 deletions
diff --git a/tactics/eqdecide.mli b/tactics/eqdecide.mli
new file mode 100644
index 000000000..32d0a3871
--- /dev/null
+++ b/tactics/eqdecide.mli
@@ -0,0 +1,17 @@
+(************************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2012 *)
+(* \VV/ **************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(************************************************************************)
+
+(************************************************************************)
+(* EqDecide *)
+(* A tactic for deciding propositional equality on inductive types *)
+(* by Eduardo Gimenez *)
+(************************************************************************)
+
+val decideEqualityGoal : unit Proofview.tactic
+
+val compare : Constr.t -> Constr.t -> unit Proofview.tactic