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
This PR makes some minor changes to the OptimizationMOI docs to remove the local
constraint and gradient-based headers (there's no need for Ipopt to appear
twice.)
It is also so we can see if #275 is fixed.
[MathOptInterface](https://github.com/jump-dev/MathOptInterface.jl) is Julia abstration layer to interface with variety of mathematical optimization solvers.
3
+
[MathOptInterface](https://github.com/jump-dev/MathOptInterface.jl) is Julia
4
+
abstration layer to interface with variety of mathematical optimization solvers.
As of now the `Optimization` interface to `MathOptInterface` implents only the `maxtime` common keyword arguments. An optimizer which is implemented in the `MathOptInterface` is can be called be called directly if no optimizer options have to be defined. For example using the `Ipopt.jl` optimizer:
16
+
As of now, the `Optimization` interface to `MathOptInterface` implements only
17
+
the `maxtime` common keyword argument.
18
+
19
+
An optimizer which supports the `MathOptInterface` API can be called be called
20
+
directly if no optimizer options have to be defined.
21
+
22
+
For example using the [`Ipopt.jl`](https://github.com/jump-dev/Ipopt.jl)
23
+
optimizer:
24
+
16
25
17
26
```julia
18
27
sol =solve(prob, Ipopt.Optimizer())
19
28
```
20
29
21
-
The optimizer options are handled in one of two ways. They can either be set via `Optimization.MOI.OptimizerWithAttributes()` or as keyword argument to `solve`. For example using the `Ipopt.jl` optimizer:
30
+
The optimizer options are handled in one of two ways. They can either be set via
31
+
`Optimization.MOI.OptimizerWithAttributes()` or as keyword argument to `solve`.
- The full list of optimizer options can be found in the [KNITRO Documentation](https://www.artelys.com/docs/knitro//3_referenceManual/callableLibraryAPI.html)
0 commit comments