Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - feat: final functors with filtered domain #10720

Closed
wants to merge 26 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e19f8dd
chore: generalize theorems from IsConnected to IsPreconnected
TwoFX Feb 19, 2024
cd69749
WIP
TwoFX Feb 19, 2024
96bddc3
chore: make IsFiltered.nonempty an instance
TwoFX Feb 19, 2024
174f2ca
Merge branch 'filtered-nonempty-instance' into filtered-is-connected
TwoFX Feb 19, 2024
676551b
WIP
TwoFX Feb 19, 2024
cede171
Dualize
TwoFX Feb 19, 2024
1c5847a
Merge branch 'filtered-nonempty-instance' into filtered-is-connected
TwoFX Feb 19, 2024
06ce652
Done
TwoFX Feb 19, 2024
960b0c4
Add code
TwoFX Feb 19, 2024
81cd9f0
Uninstance
TwoFX Feb 19, 2024
df14858
Merge branch 'filtered-is-connected' into filtered-final
TwoFX Feb 19, 2024
346b2f6
Remove import
TwoFX Feb 19, 2024
d006a1d
Merge remote-tracking branch 'origin/master' into filtered-is-connected
TwoFX Feb 19, 2024
1f87dc3
Merge branch 'filtered-is-connected' into filtered-final
TwoFX Feb 19, 2024
e966642
Fix
TwoFX Feb 19, 2024
862f6b1
Merge branch 'filtered-is-connected' into filtered-final
TwoFX Feb 19, 2024
ebb2fc3
Add missing align statement
TwoFX Feb 19, 2024
2fde1b8
Add to Mathlib.lean
TwoFX Feb 19, 2024
7c3cc36
Merge branch 'filtered-is-connected' into filtered-final
TwoFX Feb 19, 2024
b4bc3a4
Add to mathlib.lean
TwoFX Feb 19, 2024
d8ed4c7
Even more uninstance
TwoFX Feb 19, 2024
433abb3
Merge branch 'filtered-is-connected' into filtered-final
TwoFX Feb 19, 2024
9f3ee0b
Fix
TwoFX Feb 19, 2024
8706112
Minor
TwoFX Feb 19, 2024
3805ff5
Merge branch 'filtered-is-connected' into filtered-final
TwoFX Feb 19, 2024
cd6d7b1
Merge remote-tracking branch 'origin/master' into filtered-final
TwoFX Feb 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Dualize
  • Loading branch information
TwoFX committed Feb 19, 2024
commit cede171a2a22cf76f48639ddcdcb7d949bc7d6d8
2 changes: 2 additions & 0 deletions Mathlib/CategoryTheory/Filtered/Basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,8 @@ class IsCofiltered extends IsCofilteredOrEmpty C : Prop where
[nonempty : Nonempty C]
#align category_theory.is_cofiltered CategoryTheory.IsCofiltered

attribute [instance 100] IsCofiltered.nonempty

instance (priority := 100) isCofilteredOrEmpty_of_semilatticeInf (α : Type u) [SemilatticeInf α] :
IsCofilteredOrEmpty α where
cone_objs X Y := ⟨X ⊓ Y, homOfLE inf_le_left, homOfLE inf_le_right, trivial⟩
Expand Down
Loading