aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib/subtac/eterm.mli
blob: bf854abb3f4aae020a99210389fa7f352aaadd06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
(************************************************************************)
(*  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$ i*)
open Environ
open Tacmach
open Term
open Evd
open Names
open Util

val mkMetas : int -> constr list

(* env, id, evars, number of
   function prototypes to try to clear from evars contexts, object and type *)
val eterm_obligations : env -> identifier -> evar_defs -> evar_map -> int -> constr -> types -> 
  (identifier * types * loc * bool * Intset.t) array * constr * types
    (* Obl. name, type as product, location of the original evar, 
       opacity (true = opaque) and dependencies as indexes into the array *)

val etermtac : open_constr -> tactic