Skip to content

Commit

Permalink
revise docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mforets committed Aug 30, 2018
1 parent 919ab96 commit 9ba47d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions docs/src/lib/representations.md
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,6 @@ dim(::HPolytope)
addconstraint!(::HPolytope{Real}, ::LinearConstraint{Real})
constraints_list(::HPolytope)
tosimplehrep(::HPolytope)
intersection(::HPolytope, ::HPolytope)
```
Inherited from [`LazySet`](@ref):
* [`norm`](@ref norm(::LazySet, ::Real))
Expand All @@ -367,7 +366,6 @@ VPolytope
dim(::VPolytope)
σ(::AbstractVector{Real}, ::VPolytope{Real})
vertices_list(::VPolytope)
intersection(::VPolytope, ::VPolytope)
```
Inherited from [`LazySet`](@ref):
* [`norm`](@ref norm(::LazySet, ::Real))
Expand Down
6 changes: 3 additions & 3 deletions docs/src/man/concrete_polyhedra.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ product.
The dual representation as a list of vertices can be obtained with the
`vertices_list` function.

For example, the intersection of two polytopes is performed with the `intersect`
method.
For example, the concrete intersection of two polytopes is performed with the
`intersection` method.

```@example concrete_polyhedra
E = Ellipsoid(ones(2), diagm([2.0, 0.5]))
Expand All @@ -108,7 +108,7 @@ polyoverapprox(x) = HPolytope(overapproximate(x, 1e-3).constraints)
Epoly = polyoverapprox(E)
Bpoly = polyoverapprox(B)
X = intersecttion(Epoly, Bpoly)
X = intersection(Epoly, Bpoly)
plot(E, 1e-3, aspectratio=1, alpha=0.4)
plot!(B, 1e-3, alpha=0.4)
Expand Down

0 comments on commit 9ba47d6

Please sign in to comment.