Skip to content

Commit 24bb4c4

Browse files
committed
Bump mathlib
1 parent 4258f34 commit 24bb4c4

File tree

10 files changed

+9
-219
lines changed

10 files changed

+9
-219
lines changed

LeanCamCombi.lean

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import LeanCamCombi.GrowthInGroups.Constructible
1717
import LeanCamCombi.GrowthInGroups.Lecture1
1818
import LeanCamCombi.GrowthInGroups.Lecture2
1919
import LeanCamCombi.GrowthInGroups.Lecture3
20-
import LeanCamCombi.GrowthInGroups.SmallTripling
2120
import LeanCamCombi.GrowthInGroups.VerySmallDoubling
2221
import LeanCamCombi.Impact
2322
import LeanCamCombi.Incidence
@@ -32,7 +31,6 @@ import LeanCamCombi.Mathlib.Analysis.Convex.Exposed
3231
import LeanCamCombi.Mathlib.Analysis.Convex.Extreme
3332
import LeanCamCombi.Mathlib.Analysis.Convex.Independence
3433
import LeanCamCombi.Mathlib.Analysis.Convex.SimplicialComplex.Basic
35-
import LeanCamCombi.Mathlib.Combinatorics.Additive.PluenneckeRuzsa
3634
import LeanCamCombi.Mathlib.Combinatorics.Schnirelmann
3735
import LeanCamCombi.Mathlib.Combinatorics.SimpleGraph.Basic
3836
import LeanCamCombi.Mathlib.Combinatorics.SimpleGraph.Containment

LeanCamCombi/BernoulliSeq.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ protected lemma union (h : IndepFun X Y μ) :
138138
convert (hX.compl.inter hY.compl _).compl using 1
139139
· simp [compl_inter]
140140
· rw [mul_tsub, mul_one, tsub_tsub, tsub_tsub_cancel_of_le, tsub_mul, one_mul,
141-
add_tsub_assoc_of_le (mul_le_of_le_one_left' $ hX.le_one)]
142-
· exact (add_le_add_left (mul_le_of_le_one_right' $ hY.le_one) _).trans_eq
141+
add_tsub_assoc_of_le (mul_le_of_le_one_left' hX.le_one)]
142+
· exact (add_le_add_left (mul_le_of_le_one_right' hY.le_one) _).trans_eq
143143
(add_tsub_cancel_of_le hX.le_one)
144144
· rwa [IndepFun_iff, MeasurableSpace.comap_compl measurable_compl,
145145
MeasurableSpace.comap_compl measurable_compl, ← IndepFun_iff]

LeanCamCombi/ErdosRenyi/Basic.lean

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,11 @@ open scoped Finset ENNReal NNReal
1818
variable {α Ω : Type*} [MeasurableSpace Ω]
1919

2020
/-- A sequence iid. real valued Bernoulli random variables with parameter `p ≤ 1`. -/
21-
abbrev ErdosRenyi (G : Ω → SimpleGraph α) [∀ ω, DecidableRel (G ω).Adj] (p : ℝ≥0)
22-
(μ : Measure Ω := by volume_tac) : Prop :=
21+
abbrev ErdosRenyi (G : Ω → SimpleGraph α) (p : ℝ≥0) (μ : Measure Ω := by volume_tac) : Prop :=
2322
IsBernoulliSeq (fun ω ↦ (G ω).edgeSet) p μ
2423

25-
variable {G : Ω → SimpleGraph α} {H : SimpleGraph α} [∀ ω, DecidableRel (G ω).Adj] {p : ℝ≥0}
26-
(μ : Measure Ω) (hG : ErdosRenyi G p μ)
24+
variable {G : Ω → SimpleGraph α} {H : SimpleGraph α} {p : ℝ≥0} (μ : Measure Ω)
25+
(hG : ErdosRenyi G p μ)
2726

2827
namespace ErdosRenyi
2928
include hG

LeanCamCombi/GrowthInGroups/Chevalley.lean

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,6 @@ lemma LinearMap.charpoly_baseChange {R M} [CommRing R] [AddCommGroup M] [Module
146146
ext i j
147147
simp [Matrix.map_apply, LinearMap.toMatrix_apply, ← Algebra.algebraMap_eq_smul_one]
148148

149-
lemma Algebra.baseChange_lmul {R B} [CommRing R] [CommRing B] [Algebra R B]
150-
{A} [CommRing A] [Algebra R A] (f : B) :
151-
(Algebra.lmul R B f).baseChange A = Algebra.lmul A (A ⊗[R] B) (1 ⊗ₜ f) := by
152-
ext i
153-
simp
154-
155149
lemma isNilpotent_tensor_residueField_iff
156150
[Module.Free R A] [Module.Finite R A] (f : A) (I : Ideal R) [I.IsPrime] :
157151
IsNilpotent (algebraMap A (A ⊗[R] I.ResidueField) f) ↔

LeanCamCombi/GrowthInGroups/Lecture2.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import Mathlib.Combinatorics.Additive.SmallTripling
12
import LeanCamCombi.Mathlib.Data.Set.Pointwise.Interval
23
import LeanCamCombi.GrowthInGroups.ApproximateSubgroup
3-
import LeanCamCombi.GrowthInGroups.SmallTripling
44

55
open Fin Finset List
66
open scoped Pointwise

LeanCamCombi/GrowthInGroups/Lecture3.lean

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import LeanCamCombi.Mathlib.Data.Set.Pointwise.Interval
22
import LeanCamCombi.GrowthInGroups.ApproximateSubgroup
3-
import LeanCamCombi.GrowthInGroups.SmallTripling
43

54
open Fin Finset List
65
open scoped Pointwise

LeanCamCombi/GrowthInGroups/SmallTripling.lean

Lines changed: 0 additions & 195 deletions
This file was deleted.

LeanCamCombi/Mathlib/Combinatorics/Additive/PluenneckeRuzsa.lean

Lines changed: 0 additions & 5 deletions
This file was deleted.

LeanCamCombi/Mathlib/Order/Partition/Finpartition.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ lemma modPartitions_parts_eq (s d : ℕ) (hd : d ≠ 0) (h : d ≤ s) :
8686
exact Nat.sub_pos_of_lt (hi.trans_le h)
8787
· rintro ⟨hj, rfl⟩
8888
refine ⟨j / d, ?_, Nat.mod_add_div _ _⟩
89-
rwa [Nat.le_div_iff_mul_le' hd.bot_lt, Nat.le_sub_iff_add_le, Nat.le_sub_iff_add_le',
89+
rwa [Nat.le_div_iff_mul_le hd.bot_lt, Nat.le_sub_iff_add_le, Nat.le_sub_iff_add_le',
9090
← add_assoc, mul_comm, Nat.mod_add_div, Nat.add_one_le_iff]
9191
· exact hi.le.trans h
9292
rw [Nat.succ_le_iff]

lake-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"type": "git",
2626
"subDir": null,
2727
"scope": "leanprover-community",
28-
"rev": "93bcfd774f89d3874903cab06abfbf69f327cbd9",
28+
"rev": "5dfdc66e0d503631527ad90c1b5d7815c86a8662",
2929
"name": "aesop",
3030
"manifestFile": "lake-manifest.json",
3131
"inputRev": "master",
@@ -85,7 +85,7 @@
8585
"type": "git",
8686
"subDir": null,
8787
"scope": "",
88-
"rev": "8aca2144b9fdaf45417cdb129c75699ddf4da4c8",
88+
"rev": "ca888d9ee43cf9055ecce7fa541510cf68b425d6",
8989
"name": "mathlib",
9090
"manifestFile": "lake-manifest.json",
9191
"inputRev": null,

0 commit comments

Comments
 (0)