Skip to content

Commit 69373bc

Browse files
authored
Merge pull request #4 from kim-em/fix-unused-arguments
fix: add nolint unusedArguments to incomplete definitions
2 parents 8338cd2 + 2b563a9 commit 69373bc

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

PersistentDecomp/DirectSumDecomposition.lean

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ variable {D : DirectSumDecomposition M}
211211
/-- If `D` is a direct sum decomposition of `M` and for each `N` appearing in `D` we are given a
212212
direct sum decomposition of `N`, we can construct a refinement of `D` whose underlying set is the
213213
union of all decompositions of the `N`'s appearing in `D`. -/
214+
@[nolint unusedArguments]
214215
def refinement (B : ∀ N ∈ D, Set (PersistenceSubmodule M))
215216
(hB : ∀ N hN, N = sSup (B N hN)) (hB' : ∀ N hN, sSupIndep (B N hN))
216217
(hB'' : ∀ N hN, ⊥ ∉ B N hN) : DirectSumDecomposition M where

PersistentDecomp/DirectSumDecompositionDual.lean

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ variable {D : DirectSumDecomposition M}
294294

295295
/--If `D` is a direct sum decomposition of `M` and for each `N` appearing in `S` we are given a
296296
direct sum decomposition of `N`, we can construct a refinement of `D`.-/
297+
@[nolint unusedArguments]
297298
def refinement (B : ∀ N ∈ D, Set (PersistenceSubmodule M))
298299
(hB : ∀ N hN, N = sSup (B N hN)) (hB' : ∀ N hN, sSupIndep (B N hN))
299300
(hB'' : ∀ N hN, ⊥ ∉ B N hN) : DirectSumDecomposition M where

PersistentDecomp/MaximalDecompExists.lean

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ notation3:max "M["l"]_[" c "]" => chainBound l c
5959

6060
lemma chainBound_le : M[l] ≤ (Λ I l).val := iInf_le ..
6161

62+
@[nolint unusedArguments]
6263
noncomputable def limit_elt_mk (hT : IsChain LE.le T) (f : T → PersistenceSubmodule M)
6364
(h_le : ∀ (I J : T), I ≤ J → f J ≤ f I) (h_mem : ∀ I : T, (f I) ∈ I.val) : (L T) := by
6465
let f' : (I : T) → (Pone T).obj I := by

0 commit comments

Comments
 (0)