From d09af1d5ca8bb610cec40918b23be67ba6f9673f Mon Sep 17 00:00:00 2001 From: barras Date: Mon, 21 Apr 2008 16:54:38 +0000 Subject: 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 --- checker/indtypes.mli | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 checker/indtypes.mli (limited to 'checker/indtypes.mli') diff --git a/checker/indtypes.mli b/checker/indtypes.mli new file mode 100644 index 000000000..b920315ab --- /dev/null +++ b/checker/indtypes.mli @@ -0,0 +1,42 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(* Pp.std_ppcmds +val prcon : constant -> Pp.std_ppcmds + +(*s The different kinds of errors that may result of a malformed inductive + definition. *) + +(* Errors related to inductive constructions *) +type inductive_error = + | NonPos of env * constr * constr + | NotEnoughArgs of env * constr * constr + | NotConstructor of env * constr * constr + | NonPar of env * constr * int * constr * constr + | SameNamesTypes of identifier + | SameNamesConstructors of identifier + | SameNamesOverlap of identifier list + | NotAnArity of identifier + | BadEntry + +exception InductiveError of inductive_error + +(*s The following function does checks on inductive declarations. *) + +val check_inductive : env -> mutual_inductive -> mutual_inductive_body -> env -- cgit v1.2.3