Skip to content

Commit

Permalink
Replace ::LazySets.VectorIterator with ::AbstractVector
Browse files Browse the repository at this point in the history
Due to JuliaReach/LazySets.jl#3529
> The wrapper type VectorIterator is redundant
> because an AbstractVector already exposes all relevant functions.
  • Loading branch information
ederag committed Aug 6, 2024
1 parent 70f1347 commit 2bd8d6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RepeatingStructures/LensletAssembly.jl
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function project(lenslet::LensletAssembly{T}, displaypoint::SVector{3,T}, vertex
return SMatrix{2,N,T}(projectedpoints)
end

function convertlazysets(verts::LazySets.VectorIterator)
function convertlazysets(verts::AbstractVector)
M = length(verts)
T = eltype(eltype(verts))
temp = MMatrix{3,M,T}(undef)
Expand Down

0 comments on commit 2bd8d6d

Please sign in to comment.