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
Copy file name to clipboardExpand all lines: docs/src/optimization.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Polyhedra.MathProgBase.linprog
10
10
11
11
If the V-representation of the polyhedron has been computed, it can be used to solve the linear program.
12
12
```@docs
13
-
VRepSolver
13
+
VRepOptimizer
14
14
```
15
15
16
16
Otherwise, any programming solver implementing the [MathProgBase](https://github.com/JuliaOpt/MathProgBase.jl) interface can be used. See [here](http://www.juliaopt.org/) for a list of available solvers.
@@ -46,5 +46,5 @@ In fact, the MathProgBase representation of the feasible set of a linear program
46
46
\end{align*}
47
47
```
48
48
49
-
has `LPHRepresentation` as a corresponding H-representation.
50
-
A JuMP model can be converted to this representation using `LPHRepresentation(m)`.
49
+
has `LPHRep` as a corresponding H-representation.
50
+
A JuMP model can be converted to this representation using `LPHRep(m)`.
If `p` is a H-representation or is a polyhedron for which the H-representation has already been computed, calls `hchebyshevcenter`, otherwise, call `vchebyshevcenter`.
@@ -121,13 +134,13 @@ function constructpolyhedron(RepT::Type{<:Rep{T}}, d::FullDim, p::Tuple{Vararg{R
121
134
returnRepT(d, it..., solver=solver)
122
135
end
123
136
end
124
-
RepT(d, it...)::RepT#FIXME without this type annotation even convexhull(::PointsHull{2,Int64,Array{Int64,1}}, ::PointsHull{2,Int64,Array{Int64,1}}) is not type stable, why ?
137
+
returnRepT(d, it...)::RepT#FIXME without this type annotation even convexhull(::PointsHull{2,Int64,Array{Int64,1}}, ::PointsHull{2,Int64,Array{Int64,1}}) is not type stable, why ?
125
138
end
126
139
127
140
functiondefault_similar(p::Tuple{Vararg{Rep}}, d::FullDim, ::Type{T}, it::It{T}...) where T
128
141
# Some types in p may not support `d` or `T` so we call `similar_type` after `promote_reptype`
0 commit comments