blob: d0034ca543cdb9c5cdf21239ab417218d6cd03cd (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
(************************************************************************)
(* 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: extratactics.mli 8651 2006-03-21 21:54:43Z jforest $ i*)
open Names
open Term
open Proof_type
open Rawterm
val h_discrHyp : quantified_hypothesis -> tactic
val h_injHyp : quantified_hypothesis -> tactic
val h_rewriteLR : constr -> tactic
val refine_tac : Genarg.open_constr -> tactic
(* Julien: Mise en commun des differentes version de replace with in by
TODO: deplacer dans extraargs
*)
val rawwit_in_arg_hyp: identifier option Tacexpr.raw_abstract_argument_type
val in_arg_hyp: identifier option Pcoq.Gram.Entry.e
val rawwit_by_arg_tac :
(Tacexpr.raw_tactic_expr option, Topconstr.constr_expr,
Tacexpr.raw_tactic_expr)
Genarg.abstract_argument_type
val by_arg_tac : Tacexpr.raw_tactic_expr option Pcoq.Gram.Entry.e
|