diff options
| author | Théo Zimmermann | 2020-03-19 15:57:39 +0100 |
|---|---|---|
| committer | Théo Zimmermann | 2020-03-19 15:57:39 +0100 |
| commit | 0fe5cfd5fa81565b6045bd602b786ed38e19aaa9 (patch) | |
| tree | 0dcefd32242ace46e9fb837be486cf098f2525ac /theories/Structures | |
| parent | 918e301faa228190f885f860510f4b6c352620f5 (diff) | |
| parent | e138fbf1e1cd95bfae05e17074f94a1ebde2edf8 (diff) | |
Merge PR #11760: firstorder: default tactic is “auto with core”
Reviewed-by: JasonGross
Reviewed-by: Zimmi48
Diffstat (limited to 'theories/Structures')
| -rw-r--r-- | theories/Structures/EqualitiesFacts.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Structures/EqualitiesFacts.v b/theories/Structures/EqualitiesFacts.v index 6e8d9e4571..fe9794de8a 100644 --- a/theories/Structures/EqualitiesFacts.v +++ b/theories/Structures/EqualitiesFacts.v @@ -74,7 +74,7 @@ Module KeyDecidableType(D:DecidableType). Lemma InA_eqk_eqke {elt} p (m:list (key*elt)) : InA eqk p m -> exists q, eqk p q /\ InA eqke q m. Proof. - induction 1; firstorder. + induction 1; firstorder auto with crelations. Qed. Lemma InA_eqk {elt} p q (m:list (key*elt)) : |
