aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel/whelp.mli
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2005-05-20 15:43:46 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2005-05-20 15:43:46 +0000
commit8f4e84c24ac202914110b34bb241f16ce9fe9d0a (patch)
treef853ad1ec35ac938a3d1317490e5a2329e2ea58e /toplevel/whelp.mli
parent356506aee8f3b618487fc663f17ca32847f50db8 (diff)
Interface vers outil de recherche Whelp
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@7049 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'toplevel/whelp.mli')
-rw-r--r--toplevel/whelp.mli24
1 files changed, 24 insertions, 0 deletions
diff --git a/toplevel/whelp.mli b/toplevel/whelp.mli
new file mode 100644
index 000000000..1871f3906
--- /dev/null
+++ b/toplevel/whelp.mli
@@ -0,0 +1,24 @@
+(************************************************************************)
+(* 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 *)
+(************************************************************************)
+
+(*i $Id$ i*)
+
+(* Coq interface to the Whelp query engine developed at
+ the University of Bologna *)
+
+open Names
+open Term
+open Topconstr
+open Environ
+
+type whelp_request =
+ | Locate of string
+ | Elim of inductive
+ | Constr of string * env * constr
+
+val whelp : whelp_request -> unit