From 624553ae0b0be62a16ff4bcc9df358f71b759815 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 25 Mar 2019 10:45:46 +0100 Subject: Minor simplifications in two proofs. (#280) Preparation for Coq PR 9725 that may make `eauto` stronger. --- lib/Heaps.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Heaps.v') diff --git a/lib/Heaps.v b/lib/Heaps.v index 2a21f88c..9fa07a1d 100644 --- a/lib/Heaps.v +++ b/lib/Heaps.v @@ -432,7 +432,7 @@ Lemma lt_heap_In: Proof. induction h; simpl; intros. contradiction. - intuition. apply le_lt_trans with x0; auto. red. left. apply E.eq_sym; auto. + intuition. apply le_lt_trans with x0; auto. red. left. assumption. Qed. Lemma findMax_max: -- cgit