Skip to content

Commit 540b1df

Browse files
committed
Fixed issue finding lemma
1 parent 1524a05 commit 540b1df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

classical/functions.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2680,12 +2680,12 @@ Proof. by apply/funext => x/=; rewrite mulrC. Qed.
26802680
Lemma min_fun_to_max (T : Type) (T' : numDomainType) (f g : T -> T') :
26812681
(f \min g) = (f + g) - (f \max g).
26822682
Proof.
2683-
apply/funext=> x /=; by rewrite minr_to_max. Qed.
2683+
apply/funext=> x /=; by rewrite Num.Theory.minr_to_max. Qed.
26842684

26852685
Lemma max_fun_to_min (T : Type) (T' : numDomainType) (f g : T -> T') :
26862686
(f \max g) = (f + g) - (f \min g).
26872687
Proof.
2688-
apply/funext => x /=; by rewrite maxr_to_min. Qed.
2688+
apply/funext => x /=; by rewrite Num.Theory.maxr_to_min. Qed.
26892689

26902690
Lemma fun_maxC d (T : Type) (T' : orderType d) (f g : T -> T') :
26912691
f \max g = g \max f.

0 commit comments

Comments
 (0)