aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/elim.mli
blob: 594dc62eaf7b385a7a415e75c3eaddba14affb51 (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

(* $Id$ *)

(*i*)
open Names
open Term
open Proof_type
open Tacmach
open Tacticals
(*i*)

(* Eliminations tactics. *)

val introElimAssumsThen :
  (branch_assumptions -> tactic) -> branch_args -> tactic

val introCaseAssumsThen :
  (branch_assumptions -> tactic) -> branch_args -> tactic

val general_decompose_clause : (clause * constr -> bool) -> clause -> tactic
val general_decompose        : (clause * constr -> bool) -> constr -> tactic
val decompose_nonrec         : constr -> tactic
val decompose_and            : constr -> tactic
val decompose_or             : constr -> tactic
val h_decompose              : identifier list -> constr -> tactic

val double_ind : int -> int -> tactic

val intro_pattern     : intro_pattern      -> tactic
val intros_pattern    : intro_pattern list -> tactic
val dyn_intro_pattern : tactic_arg list    -> tactic
val v_intro_pattern   : tactic_arg list    -> tactic
val h_intro_pattern   : intro_pattern      -> tactic