You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> H = [1.01.0; 0.01.0];
julia> o = [2.5, 2.0, -4.0, -1.0];
julia> Pl =HParallelotope(H, o); # this set is empty
julia>vertices_list(Pl)
4-element Vector{Vector{Float64}}:
[2.0, 2.0]
[0.5, 2.0]
[1.5, 1.0]
[3.0, 1.0]
The question is whether we want to fix this because in a sense the set is illegal: we do not allow empty parallelotopes conceptually. We want to fix vertices_list.
The text was updated successfully, but these errors were encountered:
The question is whether we want to fix this because in a sense the set is illegal: we do not allow empty parallelotopes conceptually.We want to fixvertices_list
.The text was updated successfully, but these errors were encountered: