Zulip Chat Archive
Stream: Infinity-Cosmos
Topic: standardSimplex → stdSimplex
Nick Ward (Jan 23 2025 at 16:41):
A small heads up: #20974 renames SSet.standardSimplex
to SSet.stdSimplex
. Relatedly, #20954 makes possible the notation stdSimplex.δ 0
in place of stdSimplex.map (SimplexCategory.δ 0)
.
Joël Riou (Jan 24 2025 at 15:43):
As these files are going to expand significantly in a near future, in #21025, I am splitting SimplicialSet.Basic
, creating three new files StdSimplex
, Boundary
and Horn
.
Emily Riehl (Jan 24 2025 at 17:28):
Great, I like this.
Joël Riou (Jan 26 2025 at 16:06):
In #21090, I refactor the definitions of the boundary of the standard simplex and the horns. ∂Δ[n]
and Λ[n, i]
shall be a subcomplexes of Δ[n]
. This refactor only adds the necessary Subpresheaf
API in order to make mathlib compile, but there will be more later.
Nick Ward (Feb 11 2025 at 23:22):
#PR reviews > #21741 -> #21748: presentation of `SimplexCategory` might be interesting to people here.
Emily Riehl (Feb 13 2025 at 17:20):
Congrats @Robin Carlier! FYI to @Amelia Livingston.
Emily Riehl (Mar 15 2025 at 18:23):
@Joël Riou a question about using some of the changes in #21090, which we just merged into the InfinityCosmos repository. In a file written by @Jack McKoen, he uses SSet.boundaryInclusion
which I see is now depreciated in favor of SSet.boundary
. See here
/-- an inductive type defining boundary inclusions as a class of morphisms. Used to take advantage
of the `MorphismProperty` API. -/
inductive BoundaryInclusion : {X Y : SSet} → (X ⟶ Y) → Prop
| mk n : BoundaryInclusion (boundaryInclusion n)
/-- The class of all boundary inclusions. -/
def BoundaryInclusions : MorphismProperty SSet := fun _ _ p ↦ BoundaryInclusion p
On the other hand, mathlib seems to still provide SSet.boundaryInclusion
for the inclusion induced by the subcomplex, which is what we're trying to use here. What's the right way to refer to this map?
Joël Riou (Mar 15 2025 at 19:48):
You can use ∂Δ[n].ι
or (boundary.{u} n).ι
. ("boundary" is a subcomplex of the standard simplex, and ι
is the inclusion of a subcomplex.) Note also that in #21118, I shall introduce generating cofibrations/trivial cofibrations for the WIP standard model category structure on SSet
.
Johan Commelin (Mar 18 2025 at 10:46):
Any volunteers for reviewing this? It looks good to me. But model categories are approaching the boundary of my comfort zone. So I would appreciate a 2nd pair of eyes on this.
Emily Riehl (Mar 18 2025 at 15:48):
@Johan Commelin are you talking about #21118? If so, I can have a look sometime over the next few days.
Johan Commelin (Mar 18 2025 at 15:50):
Thanks, that would be great. It's a relatively short PR. I mostly would just want to get a :check: from someone who knows that maths that comes after this.
Johan Commelin (Mar 18 2025 at 15:51):
So a maths-review, as opposed to a Lean-style-review, if that makes sense :wink:
Emily Riehl (Mar 18 2025 at 21:17):
Phew! :sweat_smile:
Last updated: May 02 2025 at 03:31 UTC