Skip to content

Commit

Permalink
Merge pull request #3529 from JuliaReach/schillic/VectorIterator
Browse files Browse the repository at this point in the history
Remove redundant `VectorIterator`
  • Loading branch information
schillic authored Jun 26, 2024
2 parents 85ea131 + fbd987e commit 24d4f40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Interfaces/LazySet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ function constraints(X::LazySet)
end

function _constraints_fallback(X::LazySet)
return VectorIterator(constraints_list(X))
return constraints_list(X)
end

"""
Expand All @@ -885,7 +885,7 @@ function vertices(X::LazySet)
end

function _vertices_fallback(X::LazySet)
return VectorIterator(vertices_list(X))
return vertices_list(X)
end

function load_delaunay_MiniQhull()
Expand Down

0 comments on commit 24d4f40

Please sign in to comment.