Skip to content

Commit c2cfe9f

Browse files
committed
Disallow offset arrays in BlockedUnitRange
1 parent 2158535 commit c2cfe9f

File tree

2 files changed

+13
-62
lines changed

2 files changed

+13
-62
lines changed

src/blockaxis.jl

+7-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@ See also [`BlockedOneTo`](@ref).
5353
struct BlockedUnitRange{CS} <: AbstractBlockedUnitRange{Int,CS}
5454
first::Int
5555
lasts::CS
56-
global _BlockedUnitRange(f, cs::CS) where CS = new{CS}(f, cs)
56+
# assume that lasts is sorted, no checks carried out here
57+
global function _BlockedUnitRange(f, cs::CS) where CS
58+
Base.require_one_based_indexing(cs)
59+
new{CS}(f, cs)
60+
end
5761
end
5862

5963
@inline _BlockedUnitRange(cs) = _BlockedUnitRange(1,cs)
@@ -102,8 +106,10 @@ See also [`BlockedUnitRange`](@ref).
102106
"""
103107
struct BlockedOneTo{CS} <: AbstractBlockedUnitRange{Int,CS}
104108
lasts::CS
109+
# assume that lasts is sorted, no checks carried out here
105110
function BlockedOneTo{CS}(lasts) where {CS}
106111
Base.require_one_based_indexing(lasts)
112+
isempty(lasts) || first(lasts) >= 0 || throw(ArgumentError("blocklasts must be >= 0"))
107113
new{CS}(lasts)
108114
end
109115
end

test/test_blockindices.jl

+6-61
Original file line numberDiff line numberDiff line change
@@ -150,13 +150,7 @@ end
150150
@test bpart == blockedrange(2, 1:0)
151151

152152
o = OffsetArray([2,2,3],-1:1)
153-
b = blockedrange(1, o)
154-
@test axes(b) == (b,)
155-
@test @inferred(b[Block(-1)]) == 1:2
156-
@test b[Block(0)] == 3:4
157-
@test b[Block(1)] == 5:7
158-
@test_throws BlockBoundsError b[Block(-2)]
159-
@test_throws BlockBoundsError b[Block(2)]
153+
@test_throws ArgumentError blockedrange(1, o)
160154

161155
b = BlockArrays._BlockedUnitRange(-1,[-1,1,4])
162156
@test axes(b,1) == blockedrange(1, [1,2,3])
@@ -166,15 +160,6 @@ end
166160
@test_throws BlockBoundsError b[Block(0)]
167161
@test_throws BlockBoundsError b[Block(4)]
168162

169-
o = OffsetArray([2,2,3],-1:1)
170-
b = BlockArrays._BlockedUnitRange(-3, cumsum(o) .- 4)
171-
@test axes(b,1) == blockedrange(1, [2,2,3])
172-
@test b[Block(-1)] == -3:-2
173-
@test b[Block(0)] == -1:0
174-
@test b[Block(1)] == 1:3
175-
@test_throws BlockBoundsError b[Block(-2)]
176-
@test_throws BlockBoundsError b[Block(2)]
177-
178163
b = BlockArrays._BlockedUnitRange(1, cumsum(Fill(3,1_000_000)))
179164
@test b isa BlockedUnitRange{<:AbstractRange}
180165
@test b[Block(100_000)] == 299_998:300_000
@@ -249,17 +234,6 @@ end
249234
@test_throws BoundsError findblockindex(b,0)
250235
@test_throws BoundsError findblockindex(b,7)
251236

252-
o = OffsetArray([2,2,3],-1:1)
253-
b = blockedrange(1, o)
254-
@test @inferred(findblock(b,1)) == Block(-1)
255-
@test @inferred(findblockindex(b,1)) == Block(-1)[1]
256-
@test findblock.(Ref(b),1:7) == Block.([-1,-1,0,0,1,1,1])
257-
@test findblockindex.(Ref(b),1:7) == BlockIndex.([-1,-1,0,0,1,1,1], [1,2,1,2,1,2,3])
258-
@test_throws BoundsError findblock(b,0)
259-
@test_throws BoundsError findblock(b,8)
260-
@test_throws BoundsError findblockindex(b,0)
261-
@test_throws BoundsError findblockindex(b,8)
262-
263237
b = BlockArrays._BlockedUnitRange(-1,[-1,1,4])
264238
@test @inferred(findblock(b,-1)) == Block(1)
265239
@test @inferred(findblockindex(b,-1)) == Block(1)[1]
@@ -270,17 +244,6 @@ end
270244
@test_throws BoundsError findblockindex(b,-2)
271245
@test_throws BoundsError findblockindex(b,5)
272246

273-
o = OffsetArray([2,2,3],-1:1)
274-
b = BlockArrays._BlockedUnitRange(-3, cumsum(o) .- 4)
275-
@test @inferred(findblock(b,-3)) == Block(-1)
276-
@test @inferred(findblockindex(b,-3)) == Block(-1)[1]
277-
@test findblock.(Ref(b),-3:3) == Block.([-1,-1,0,0,1,1,1])
278-
@test findblockindex.(Ref(b),-3:3) == BlockIndex.([-1,-1,0,0,1,1,1], [1,2,1,2,1,2,3])
279-
@test_throws BoundsError findblock(b,-4)
280-
@test_throws BoundsError findblock(b,5)
281-
@test_throws BoundsError findblockindex(b,-4)
282-
@test_throws BoundsError findblockindex(b,5)
283-
284247
b = blockedrange(1, Fill(3,1_000_000))
285248
@test @inferred(findblock(b, 1)) == Block(1)
286249
@test @inferred(findblockindex(b, 1)) == Block(1)[1]
@@ -425,32 +388,14 @@ end
425388
@test_throws BlockBoundsError b[Block(4)]
426389
@test_throws BlockBoundsError view(b, Block(4))
427390

428-
o = OffsetArray([2,2,3],-1:1)
429-
b = blockedrange(o)
430-
@test axes(b) == (b,)
431-
@test @inferred(b[Block(-1)]) == 1:2
432-
@test b[Block(0)] == 3:4
433-
@test b[Block(1)] == 5:7
434-
@test_throws BlockBoundsError b[Block(-2)]
435-
@test_throws BlockBoundsError b[Block(2)]
436-
437-
b = BlockArrays._BlockedUnitRange(-1,[-1,1,4])
438-
@test axes(b,1) == blockedrange([1,2,3])
439-
@test b[Block(1)] == -1:-1
440-
@test b[Block(2)] == 0:1
391+
b = BlockedOneTo([0,1,4])
392+
@test axes(b,1) == blockedrange([0,1,3])
393+
@test b[Block(1)] == 1:0
394+
@test b[Block(2)] == 1:1
441395
@test b[Block(3)] == 2:4
442396
@test_throws BlockBoundsError b[Block(0)]
443397
@test_throws BlockBoundsError b[Block(4)]
444398

445-
o = OffsetArray([2,2,3],-1:1)
446-
b = BlockArrays._BlockedUnitRange(-3, cumsum(o) .- 4)
447-
@test axes(b,1) == blockedrange([2,2,3])
448-
@test b[Block(-1)] == -3:-2
449-
@test b[Block(0)] == -1:0
450-
@test b[Block(1)] == 1:3
451-
@test_throws BlockBoundsError b[Block(-2)]
452-
@test_throws BlockBoundsError b[Block(2)]
453-
454399
b = blockedrange(1,Fill(3,1_000_000))
455400
@test b isa BlockedUnitRange{<:AbstractRange}
456401
@test b[Block(100_000)] == 299_998:300_000
@@ -565,8 +510,8 @@ end
565510
end
566511

567512
b = blockedrange(1:3)
568-
@test bpart isa BlockedUnitRange
569513
bpart = @inferred(b[Block.(1:2)])
514+
@test bpart isa BlockedUnitRange
570515
@test bpart == blockedrange(1:2)
571516
bpart = @inferred(b[Block.(1:0)])
572517
@test bpart isa BlockedUnitRange

0 commit comments

Comments
 (0)