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] - chore: scope notations from category theory. #5685

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions Mathlib/AlgebraicTopology/FundamentalGroupoid/Basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ homotopy equivalence. With this, the fundamental group of `X` based at `x` is ju
group of `x`.
-/

open CategoryTheory

universe u v

Expand Down
2 changes: 1 addition & 1 deletion Mathlib/AlgebraicTopology/TopologicalSimplex.lean
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ noncomputable section

namespace SimplexCategory

open Simplicial NNReal BigOperators Classical
open Simplicial NNReal BigOperators Classical CategoryTheory

attribute [local instance]
CategoryTheory.ConcreteCategory.hasCoeToSort CategoryTheory.ConcreteCategory.funLike
Expand Down
10 changes: 5 additions & 5 deletions Mathlib/CategoryTheory/Category/Basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Defines a category, as a type class parametrised by the type of objects.

## Notations

Introduces notations
Introduces notations in the `CategoryTheory` scope
* `X ⟶ Y` for the morphism spaces (type as `\hom`),
* `𝟙 X` for the identity morphism on `X` (type as `\b1`),
* `f ≫ g` for composition in the 'arrows' convention (type as `\gg`).
Expand Down Expand Up @@ -105,10 +105,10 @@ class CategoryStruct (obj : Type u) extends Quiver.{v + 1} obj : Type max u (v +
initialize_simps_projections CategoryStruct (-toQuiver_Hom)

/-- Notation for the identity morphism in a category. -/
notation "𝟙" => CategoryStruct.id -- type as \b1
scoped notation "𝟙" => CategoryStruct.id -- type as \b1

/-- Notation for composition of morphisms in a category. -/
infixr:80 " ≫ " => CategoryStruct.comp -- type as \gg
scoped infixr:80 " ≫ " => CategoryStruct.comp -- type as \gg

/--
A thin wrapper for `aesop` which adds the `CategoryTheory` rule set and
Expand Down Expand Up @@ -199,13 +199,13 @@ theorem whisker_eq (f : X ⟶ Y) {g h : Y ⟶ Z} (w : g = h) : f ≫ g = f ≫ h
Notation for whiskering an equation by a morphism (on the right).
If `f g : X ⟶ Y` and `w : f = g` and `h : Y ⟶ Z`, then `w =≫ h : f ≫ h = g ≫ h`.
-/
infixr:80 " =≫ " => eq_whisker
scoped infixr:80 " =≫ " => eq_whisker

/--
Notation for whiskering an equation by a morphism (on the left).
If `g h : Y ⟶ Z` and `w : g = h` and `h : X ⟶ Y`, then `f ≫= w : f ≫ g = f ≫ h`.
-/
infixr:80 " ≫= " => whisker_eq
scoped infixr:80 " ≫= " => whisker_eq

theorem eq_of_comp_left_eq {f g : X ⟶ Y} (w : ∀ {Z : C} (h : Y ⟶ Z), f ≫ h = g ≫ h) :
f = g := by
Expand Down
2 changes: 2 additions & 0 deletions Mathlib/CategoryTheory/Category/Preorder.lean
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ end CategoryTheory

section

open CategoryTheory

variable {X : Type u} {Y : Type v} [Preorder X] [Preorder Y]

/-- A monotone function between preorders induces a functor between the associated categories.
Expand Down
13 changes: 7 additions & 6 deletions Mathlib/CategoryTheory/Functor/Basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ import Mathlib.CategoryTheory.Category.Basic

Defines a functor between categories, extending a `Prefunctor` between quivers.

Introduces notation `C ⥤ D` for the type of all functors from `C` to `D`.
(Unfortunately the `⇒` arrow (`\functor`) is taken by core,
but in mathlib4 we should switch to this.)
Comment on lines -20 to -21
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should keep this comment.

Introduces, in the `CategoryTheory` scope, notations `C ⥤ D` for the type of all functors
from `C` to `D`, `𝟭` for the identity functor and `⋙` for functor composition.

TODO: Switch to using the `⇒` arrow.
-/
PatrickMassot marked this conversation as resolved.
Show resolved Hide resolved


Expand Down Expand Up @@ -58,7 +59,7 @@ end
/-- Notation for a functor between categories. -/
-- A functor is basically a function, so give ⥤ a similar precedence to → (25).
-- For example, `C × D ⥤ E` should parse as `(C × D) ⥤ E` not `C × (D ⥤ E)`.
infixr:26 " ⥤ " => Functor -- type as \func
scoped [CategoryTheory] infixr:26 " ⥤ " => Functor -- type as \func

attribute [simp] Functor.map_id Functor.map_comp

Expand Down Expand Up @@ -87,7 +88,7 @@ protected def id : C ⥤ C where
#align category_theory.functor.id CategoryTheory.Functor.id

/-- Notation for the identity functor on a category. -/
notation "𝟭" => Functor.id -- Type this as `\sb1`
scoped [CategoryTheory] notation "𝟭" => Functor.id -- Type this as `\sb1`

instance : Inhabited (C ⥤ C) :=
⟨Functor.id C⟩
Expand Down Expand Up @@ -120,7 +121,7 @@ def comp (F : C ⥤ D) (G : D ⥤ E) : C ⥤ E where
#align category_theory.functor.comp_obj CategoryTheory.Functor.comp_obj

/-- Notation for composition of functors. -/
infixr:80 " ⋙ " => comp
scoped [CategoryTheory] infixr:80 " ⋙ " => Functor.comp

@[simp]
theorem comp_map (F : C ⥤ D) (G : D ⥤ E) {X Y : C} (f : X ⟶ Y) :
Expand Down
2 changes: 1 addition & 1 deletion Mathlib/Combinatorics/Hall/Basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Hall's Marriage Theorem, indexed families
-/


open Finset
open Finset CategoryTheory

universe u v

Expand Down
2 changes: 1 addition & 1 deletion Mathlib/Combinatorics/SimpleGraph/Finsubgraph.lean
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ finite subgraphs `G'' ≤ G'`, the inverse system `finsubgraphHomFunctor` restri
-/


open Set
open Set CategoryTheory

universe u v

Expand Down
6 changes: 1 addition & 5 deletions Mathlib/Topology/Sheaves/Sheafify.lean
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,7 @@ universe v

noncomputable section

open TopCat

open Opposite

open TopologicalSpace
open TopCat Opposite TopologicalSpace CategoryTheory

variable {X : TopCat.{v}} (F : Presheaf (Type v) X)

Expand Down
Loading