Skip to content
Merged
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
10 changes: 6 additions & 4 deletions Physlib/Relativity/Tensors/Contraction/SuccSuccAbove.lean
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ module

public import Mathlib.Data.Finset.Sort
public import Mathlib.Data.Nat.SuccPred
public import Physlib.Meta.TODO.Basic
/-!

# Defining succSuccAbove
Expand Down Expand Up @@ -42,9 +41,12 @@ variable {n : ℕ} {c : Fin (n + 1 + 1) → C}

-/

TODO "Determine a way to simplify the definition of `succSuccAbove` using
predefined functions from Mathlib, but ensuring tactics such as `decide` still
work."
/-!
The definition below is deliberately explicit. Later lemmas identify it with
`Finset.orderEmbOfFin` and `Finset.orderIsoOfFin`, giving a bridge to the Mathlib
API while keeping this form convenient for computation and goals solved by
`decide`.
-/

/-- The embedding of `Fin n` into `Fin (n + 1 + 1)` which leaves a hole
at `i` and `j`. -/
Expand Down
Loading