blob: fbe2ac1d4e24698ce4f770b780e8f0285d17b248 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
(************************************************************************)
(* 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: eterm.mli 8688 2006-04-07 15:08:12Z msozeau $ i*)
open Tacmach
open Term
open Evd
open Names
val mkMetas : int -> constr list
val eterm_term : evar_map -> constr -> types option -> constr * types option * (identifier * types) list
val etermtac : open_constr -> tactic
|