diff options
author | Samuel Mimram <samuel.mimram@ens-lyon.org> | 2004-07-28 21:54:47 +0000 |
---|---|---|
committer | Samuel Mimram <samuel.mimram@ens-lyon.org> | 2004-07-28 21:54:47 +0000 |
commit | 6b649aba925b6f7462da07599fe67ebb12a3460e (patch) | |
tree | 43656bcaa51164548f3fa14e5b10de5ef1088574 /parsing/g_minicoq.mli |
Imported Upstream version 8.0pl1upstream/8.0pl1
Diffstat (limited to 'parsing/g_minicoq.mli')
-rw-r--r-- | parsing/g_minicoq.mli | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/parsing/g_minicoq.mli b/parsing/g_minicoq.mli new file mode 100644 index 00000000..e19b1163 --- /dev/null +++ b/parsing/g_minicoq.mli @@ -0,0 +1,31 @@ +(************************************************************************) +(* 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: g_minicoq.mli,v 1.8.16.1 2004/07/16 19:30:39 herbelin Exp $ i*) + +(*i*) +open Pp +open Names +open Term +open Environ +(*i*) + +val term : constr Grammar.Entry.e + +type command = + | Definition of identifier * constr option * constr + | Parameter of identifier * constr + | Variable of identifier * constr + | Inductive of + (identifier * constr) list * + (identifier * constr * (identifier * constr) list) list + | Check of constr + +val command : command Grammar.Entry.e + +val pr_term : path_kind -> env -> constr -> std_ppcmds |