diff options
| author | Pierre-Marie Pédrot | 2020-08-29 18:47:53 +0200 |
|---|---|---|
| committer | Hugo Herbelin | 2020-09-02 19:06:33 +0200 |
| commit | 007f760ddc7ad0960e91307d02bfc7fef42dc46b (patch) | |
| tree | 38ed87e533538128b9101115d4a3063fc0f0f1ca /tactics/elim.mli | |
| parent | afb4e0633f7cb36c10356d7da9b915d2e95aee6e (diff) | |
Further remove the type Elim.branch_assumptions.
Only one field was used throughout the code base.
Diffstat (limited to 'tactics/elim.mli')
| -rw-r--r-- | tactics/elim.mli | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tactics/elim.mli b/tactics/elim.mli index f66462a224..921a942e72 100644 --- a/tactics/elim.mli +++ b/tactics/elim.mli @@ -22,10 +22,6 @@ type branch_args = private { true=assumption, false=let-in *) branchnames : intro_patterns} -type branch_assumptions = private { - ba : branch_args; (** the branch args *) - assums : named_context} (** the list of assumptions introduced *) - val case_then_using : or_and_intro_pattern option -> (branch_args -> unit Proofview.tactic) -> constr option -> inductive * EInstance.t -> constr * types -> unit Proofview.tactic @@ -35,7 +31,7 @@ val case_nodep_then_using : constr option -> inductive * EInstance.t -> constr * types -> unit Proofview.tactic val introCaseAssumsThen : Tactics.evars_flag -> - (intro_patterns -> branch_assumptions -> unit Proofview.tactic) -> + (intro_patterns -> named_context -> unit Proofview.tactic) -> branch_args -> unit Proofview.tactic val h_decompose : inductive list -> constr -> unit Proofview.tactic |
