Skip to content

Commit

Permalink
#58 - finished Polytopic
Browse files Browse the repository at this point in the history
  • Loading branch information
schillic committed Dec 15, 2017
1 parent 5b9cc9d commit b608aeb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/Ball1.jl
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,27 @@ function center(B::Ball1{N})::Vector{N} where {N<:Real}
end


# --- Polytopic interface functions ---


"""
vertices_list(B::Ball1{N})::Vector{Vector{N}} where {N<:Real}
Return the list of vertices of a ball in the 1-norm.
### Input
- `B` -- ball in the 1-norm
### Output
A list containing only a single vertex.
"""
function vertices_list(B::Ball1{N})::Vector{Vector{N}} where {N<:Real}
error("this function is not implemented yet, see issue #84")
end


# --- LazySet interface functions ---


Expand Down

0 comments on commit b608aeb

Please sign in to comment.