Skip to content

Commit 172b071

Browse files
ordinal(buchholz): fix Slice 2-bplus — explicit implicit on ≤′-refl (#134)
Single-line fix to Slice 2-bplus's `ω-rank-pow-mono-≤Ω` — the ω≤ω case used `≤′-refl` without an explicit `{α}` annotation, leaving the implicit unconstrained. Fix: `≤′-refl {ω-rank-pow ω}`. Surfaced after installing agda 2.6.3 + stdlib v2.3 locally in the container. Original PR #133 had merged unverified because the container had no agda binary AND GitHub Actions quota was exhausted (CI checks stuck in "queued" indefinitely). `agda -i proofs/agda proofs/agda/All.agda` exits 0 with this fix. Admin-merged before CI green (quota issue ongoing).
1 parent 647d360 commit 172b071

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

proofs/agda/Ordinal/Buchholz/RankPowDomination.agda

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ open import Ordinal.Buchholz.RankPow using
166166
ω-rank-pow-mono-≤Ω : {μ ν} μ ≤Ω ν ω-rank-pow μ ≤′ ω-rank-pow ν
167167
ω-rank-pow-mono-≤Ω (fin≤fin m≤n) = ω^-mono-≤ (s≤s m≤n)
168168
ω-rank-pow-mono-≤Ω {fin m} fin≤ω = f-in-lim′ (λ k ω^ (suc k)) m
169-
ω-rank-pow-mono-≤Ω ω≤ω = ≤′-refl
169+
ω-rank-pow-mono-≤Ω ω≤ω = ≤′-refl {ω-rank-pow ω}
170170

171171
----------------------------------------------------------------------
172172
-- Positivity of `ω-rank-pow-succ`

0 commit comments

Comments
 (0)