aboutsummaryrefslogtreecommitdiffhomepage
path: root/checker/subtyping.mli
diff options
context:
space:
mode:
authorGravatar barras <barras@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-04-21 16:54:38 +0000
committerGravatar barras <barras@85f007b7-540e-0410-9357-904b9bb8a0f7>2008-04-21 16:54:38 +0000
commitd09af1d5ca8bb610cec40918b23be67ba6f9673f (patch)
treea0ffa9b6df25e44b7ce51aa6017781f9bac2f84a /checker/subtyping.mli
parent2407beea26ae531431db3123ecba6a08acd4e3e2 (diff)
added the .vo checker (with independent Makefile)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10826 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'checker/subtyping.mli')
-rw-r--r--checker/subtyping.mli21
1 files changed, 21 insertions, 0 deletions
diff --git a/checker/subtyping.mli b/checker/subtyping.mli
new file mode 100644
index 000000000..10842252e
--- /dev/null
+++ b/checker/subtyping.mli
@@ -0,0 +1,21 @@
+(************************************************************************)
+(* 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: subtyping.mli 5920 2004-07-16 20:01:26Z herbelin $ i*)
+
+(*i*)
+open Univ
+open Term
+open Declarations
+open Environ
+(*i*)
+
+val check_subtypes : env -> module_type_body -> module_type_body -> unit
+val check_equal : env -> module_type_body -> module_type_body -> unit
+
+