We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Concrete intersection has been called "intersection", while lazy intersection is ∩ , spelled out as "intersect", for the case of rectangles:
julia> B1 = BallInf(ones(2), 1.); julia> B2 = BallInf(ones(2), 1.); julia> intersection(B1, B2) LazySets.Hyperrectangle{Float64}([1.0, 1.0], [1.0, 1.0]) julia> intersect(B1, B2) LazySets.Intersection{Float64,LazySets.BallInf{Float64},LazySets.BallInf{Float64}}(LazySets.BallInf{Float64}([1.0, 1.0], 1.0), LazySets.BallInf{Float64}([1.0, 1.0], 1.0))
This is to propose adjusting the function's name in
intersect(P1::HPolytope{N}, P2::HPolytope{N}; [backend]=CDDLib.CDDLibrary(), [prunefunc]=removehredundancy!)::HPolytope{N} where {N<:Real}
and the corresponging one for VPolytope.
VPolytope
The text was updated successfully, but these errors were encountered:
Merge pull request #596 from JuliaReach/mforets/595
d2108cf
#595 - Polytopes intersect should be intersection
mforets
No branches or pull requests
Concrete intersection has been called "intersection", while lazy intersection is ∩ , spelled out as "intersect", for the case of rectangles:
This is to propose adjusting the function's name in
and the corresponging one for
VPolytope
.The text was updated successfully, but these errors were encountered: