aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2002-04-17 11:40:21 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2002-04-17 11:40:21 +0000
commit4bdc6a6515de45027e43ad79271cf2d8793394e4 (patch)
tree128d805242d4caa2d0af74f3ffce8608965bafb9 /contrib
parentf23266511a92a6260dde8bfee6e6b5d840a1c6fd (diff)
jLogic.mli remplace par jolic.mli
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2652 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib')
-rw-r--r--contrib/jprover/jLogic.mli40
1 files changed, 0 insertions, 40 deletions
diff --git a/contrib/jprover/jLogic.mli b/contrib/jprover/jLogic.mli
deleted file mode 100644
index a90797911..000000000
--- a/contrib/jprover/jLogic.mli
+++ /dev/null
@@ -1,40 +0,0 @@
-(* The interface to manipulate [jterms], which is
- extracted and modified from Meta-Prl. *)
-
-type rule =
- Ax | Andr | Andl | Orr | Orr1 | Orr2 | Orl | Impr | Impl | Negr | Negl
- | Allr | Alll| Exr | Exl | Fail | Falsel | Truer
-
-module type JLogicSig =
- sig
- val is_all_term : Jterm.term -> bool
- val dest_all : Jterm.term -> string * Jterm.term * Jterm.term
- val is_exists_term : Jterm.term -> bool
- val dest_exists : Jterm.term -> string * Jterm.term * Jterm.term
- val is_and_term : Jterm.term -> bool
- val dest_and : Jterm.term -> Jterm.term * Jterm.term
- val is_or_term : Jterm.term -> bool
- val dest_or : Jterm.term -> Jterm.term * Jterm.term
- val is_implies_term : Jterm.term -> bool
- val dest_implies : Jterm.term -> Jterm.term * Jterm.term
- val is_not_term : Jterm.term -> bool
- val dest_not : Jterm.term -> Jterm.term
- type inf_step = rule * (string * Jterm.term) * (string * Jterm.term)
- type inference = inf_step list
- val empty_inf : inference
- val append_inf :
- inference -> (string * Jterm.term) -> (string * Jterm.term) -> rule -> inference
- val print_inf : inference -> unit
- end
-
-module JLogic : JLogicSig
-
-val show_loading : string -> unit
-
-type my_Debug = {
- mutable debug_name : string;
- mutable debug_description : string;
- debug_value : bool;
-}
-val create_debug : 'a -> bool ref
-val ruletable : rule -> string