Commit 3a163fa
Fix simpNF linter warnings
This PR fixes 8 simpNF linter warnings across 3 files:
**BumpFunctor.lean:**
- `Bump_apply_of_mem` - Removed @[simp] (simp can prove via Bump_obj + ite_true)
- `Bump_apply_of_not_mem` - Removed @[simp] (simp can prove via Bump_obj + ite_false)
**DirectSumDecompositionDual.lean:**
- `RefinmentMapFunctorial` - Removed @[simp] (argument J cannot be inferred)
**EndoRingIsLocal.lean:**
- `ZeroEndAppIsZero` - Changed LHS to simplified form `fun X => 0`
- `NegApp` - Changed LHS from `(-θ).app X` to `(OppEndo C R F θ).app X`
- `NegAppModule` - Same LHS change as NegApp
- `CompIsComp` - Removed @[simp] (simp can prove via MulDef + NatTrans.comp_app)
- `PowEqCompRight` - Changed LHS from `θ^(n+1)` to `θ ≫ (θ^n)` (already simplified by PowEqCompLeft)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent 25c08c3 commit 3a163fa
File tree
3 files changed
+6
-9
lines changed- PersistentDecomp
3 files changed
+6
-9
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
88 | 88 | | |
89 | 89 | | |
90 | 90 | | |
91 | | - | |
92 | 91 | | |
93 | 92 | | |
94 | 93 | | |
95 | 94 | | |
96 | | - | |
97 | 95 | | |
98 | 96 | | |
99 | 97 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
200 | 200 | | |
201 | 201 | | |
202 | 202 | | |
203 | | - | |
204 | 203 | | |
205 | 204 | | |
206 | 205 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
221 | 221 | | |
222 | 222 | | |
223 | 223 | | |
224 | | - | |
| 224 | + | |
225 | 225 | | |
226 | 226 | | |
227 | 227 | | |
| |||
247 | 247 | | |
248 | 248 | | |
249 | 249 | | |
250 | | - | |
| 250 | + | |
251 | 251 | | |
252 | 252 | | |
253 | 253 | | |
254 | | - | |
| 254 | + | |
| 255 | + | |
255 | 256 | | |
256 | 257 | | |
257 | 258 | | |
258 | 259 | | |
259 | 260 | | |
260 | 261 | | |
261 | 262 | | |
262 | | - | |
263 | 263 | | |
264 | 264 | | |
265 | 265 | | |
| |||
289 | 289 | | |
290 | 290 | | |
291 | 291 | | |
292 | | - | |
293 | | - | |
| 292 | + | |
| 293 | + | |
294 | 294 | | |
295 | 295 | | |
296 | 296 | | |
| |||
0 commit comments