Skip to content

Commit ab051ac

Browse files
ppedrotliyishuai
authored andcommitted
1 parent cabde79 commit ab051ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

theories/Tcp.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Lemma filter_length {A} (f : A -> bool) (l : list A) :
4545
length (filter f l) <= length l.
4646
Proof.
4747
induction l; simpl; intuition.
48-
destruct (f a); simpl; intuition.
48+
destruct (f a); simpl; intuition; auto with *.
4949
Qed.
5050

5151
Program Fixpoint nodup {A} `{Dec_Eq A}

0 commit comments

Comments
 (0)