-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #217 from JuliaReach/mforets/193
- Loading branch information
Showing
2 changed files
with
225 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,224 @@ | ||
using MathProgBase, GLPKMathProgInterface | ||
|
||
export VPolytope, | ||
vertices_list | ||
|
||
""" | ||
VPolytope{N<:Real} <: AbstractPolytope{N} | ||
Type that represents a convex polytope in V-representation. | ||
### Fields | ||
- `vertices` -- the list of vertices | ||
""" | ||
struct VPolytope{N<:Real} <: AbstractPolytope{N} | ||
vertices::Vector{Vector{N}} | ||
end | ||
# constructor for a VPolytope with empty vertices list | ||
VPolytope{N}() where {N<:Real} = VPolytope{N}(Vector{N}(0)) | ||
|
||
# constructor for a VPolytope with no vertices of type Float64 | ||
VPolytope() = VPolytope{Float64}() | ||
|
||
# constructor from a polygon in V-representation | ||
VPolytope(P::VPolygon) = VPolytope(P.vertices_list) | ||
|
||
|
||
# --- LazySet interface functions --- | ||
|
||
|
||
""" | ||
dim(P::VPolytope)::Int | ||
Return the dimension of a polytope in V-representation. | ||
### Input | ||
- `P` -- polytope in V-representation | ||
### Output | ||
The ambient dimension of the polytope in V-representation. | ||
If it is empty, the result is ``-1``. | ||
### Examples | ||
```jldoctest | ||
julia> v = VPolytope() | ||
julia> dim(v) > 0 | ||
false | ||
julia> v = VPolytope([ones(3)]) | ||
LazySets.VPolytope{Float64}(Array{Float64,1}[[1.0, 1.0, 1.0]]) | ||
julia> dim(v) == 3 | ||
true | ||
``` | ||
""" | ||
function dim(P::VPolytope)::Int | ||
return length(P.vertices) == 0 ? -1 : length(P.vertices[1]) | ||
end | ||
|
||
""" | ||
σ(d::AbstractVector{<:Real}, P::VPolytope; algorithm="hrep")::Vector{<:Real} | ||
Return the support vector of a polyhedron (in V-representation) in a given | ||
direction. | ||
### Input | ||
- `d` -- direction | ||
- `P` -- polyhedron in V-representation | ||
- `algorithm` -- (optional, default: `'hrep'`) method to compute the support vector | ||
### Output | ||
The support vector in the given direction. | ||
""" | ||
function σ(d::AbstractVector{<:Real}, P::VPolytope; algorithm="hrep")::Vector{<:Real} | ||
if algorithm == "hrep" | ||
@assert isdefined(:Polyhedra) "you need to load Polyhedra for this algorithm" | ||
return σ(d, tohrep(P)) | ||
else | ||
error("the algorithm $(hrep) is not known") | ||
end | ||
end | ||
|
||
# --- VPolytope functions --- | ||
|
||
""" | ||
vertices_list(P::VPolytope{N})::Vector{Vector{N}} where {N<:Real} | ||
Return the list of vertices of a polytope in V-representation. | ||
### Input | ||
- `P` -- polytope in vertex representation | ||
### Output | ||
List of vertices. | ||
""" | ||
function vertices_list(P::VPolytope{N})::Vector{Vector{N}} where {N<:Real} | ||
return P.vertices | ||
end | ||
|
||
|
||
@require Polyhedra begin | ||
|
||
using CDDLib # default backend | ||
import Polyhedra:polyhedron, SimpleHRepresentation, SimpleVRepresentation, | ||
HRep, VRep, | ||
removehredundancy!, removevredundancy!, | ||
hreps, vreps, | ||
intersect, | ||
convexhull, | ||
hcartesianproduct | ||
|
||
export intersect, convex_hull, cartesian_product, vertices_list | ||
|
||
# VPolytope from a VRep | ||
function VPolytope(P::VRep{N, T}, backend=CDDLib.CDDLibrary()) where {N, T} | ||
vertices = Vector{Vector{T}}() | ||
for vi in vreps(P) | ||
push!(vertices, vi) | ||
end | ||
return VPolytope(vertices) | ||
end | ||
|
||
""" | ||
polyhedron(P::VPolytope{N}, [backend]=CDDLib.CDDLibrary()) where {N} | ||
Return an `VRep` polyhedron from `Polyhedra.jl` given a polytope in V-representation. | ||
### Input | ||
- `P` -- polytope | ||
- `backend` -- (optional, default: `CDDLib.CDDLibrary()`) the polyhedral | ||
computations backend, see [Polyhedra's documentation](https://juliapolyhedra.github.io/Polyhedra.jl/latest/installation.html#Getting-Libraries-1) | ||
for further information | ||
### Output | ||
A `VRep` polyhedron. | ||
""" | ||
function polyhedron(P::VPolytope{N}, backend=CDDLib.CDDLibrary()) where {N} | ||
return polyhedron(SimpleVRepresentation(hcat(vertices_list(P)...)'), backend) | ||
end | ||
|
||
""" | ||
intersect(P1::VPolytope{N}, P2::VPolytope{N}; | ||
[backend]=CDDLib.CDDLibrary(), | ||
[prunefunc]=removehredundancy!)::VPolytope{N} where {N<:Real} | ||
Compute the intersection of two polytopes in V-representation. | ||
### Input | ||
- `P1` -- polytope | ||
- `P2` -- another polytope | ||
- `backend` -- (optional, default: `CDDLib.CDDLibrary()`) the polyhedral | ||
computations backend, see [Polyhedra's documentation](https://juliapolyhedra.github.io/Polyhedra.jl/latest/installation.html#Getting-Libraries-1) | ||
for further information | ||
- `prunefunc` -- (optional, default: `removehredundancy!`) function to post-process | ||
the output of `intersect` | ||
### Output | ||
The `VPolytope` obtained by the intersection of `P1` and `P2`. | ||
""" | ||
function intersect(P1::VPolytope{N}, P2::VPolytope{N}; | ||
backend=CDDLib.CDDLibrary(), | ||
prunefunc=removehredundancy!)::VPolytope{N} where {N<:Real} | ||
|
||
P1 = polyhedron(P1, backend) | ||
P2 = polyhedron(P2, backend) | ||
Pint = intersect(P1, P2) | ||
prunefunc(Pint) | ||
return VPolytope(Pint) | ||
end | ||
|
||
""" | ||
convex_hull(P1::VPolytope, P2::VPolytope; [backend]=CDDLib.CDDLibrary()) | ||
Compute the convex hull of the set union of two polytopes in V-representation. | ||
### Input | ||
- `P1` -- polytope | ||
- `P2` -- another polytope | ||
- `backend` -- (optional, default: `CDDLib.CDDLibrary()`) the polyhedral | ||
computations backend, see [Polyhedra's documentation](https://juliapolyhedra.github.io/Polyhedra.jl/latest/installation.html#Getting-Libraries-1) | ||
for further information | ||
### Output | ||
The `VPolytope` obtained by the concrete convex hull of `P1` and `P2`. | ||
""" | ||
function convex_hull(P1::VPolytope, P2::VPolytope; backend=CDDLib.CDDLibrary()) | ||
Pch = convexhull(polyhedron(P1, backend), polyhedron(P2, backend)) | ||
return VPolytope(Pch) | ||
end | ||
|
||
""" | ||
cartesian_product(P1::VPolytope, P2::VPolytope; [backend]=CDDLib.CDDLibrary()) | ||
Compute the Cartesian product of two polytopes in V-representation. | ||
### Input | ||
- `P1` -- polytope | ||
- `P2` -- another polytope | ||
- `backend` -- (optional, default: `CDDLib.CDDLibrary()`) the polyhedral | ||
computations backend, see [Polyhedra's documentation](https://juliapolyhedra.github.io/Polyhedra.jl/latest/installation.html#Getting-Libraries-1) | ||
for further information | ||
### Output | ||
The `VPolytope` obtained by the concrete Cartesian product of `P1` and `P2`. | ||
""" | ||
function cartesian_product(P1::VPolytope, P2::VPolytope; backend=CDDLib.CDDLibrary()) | ||
Pcp = hcartesianproduct(polyhedron(P1, backend), polyhedron(P2, backend)) | ||
return VPolytope(Pcp) | ||
end | ||
|
||
end |