Skip to content

Commit 54f11bd

Browse files
format
1 parent 9f9cd5d commit 54f11bd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

docs/src/optimization_packages/mathoptinterface.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Pkg.add("OptimizationMOI");
1313
```
1414

1515
## Details
16+
1617
As of now, the `Optimization` interface to `MathOptInterface` implements only
1718
the `maxtime` common keyword argument.
1819

src/Optimization.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ using ArrayInterface, Base.Iterators, SparseArrays, LinearAlgebra
1616
using SymbolicIndexingInterface
1717
using Pkg
1818

19-
import SciMLBase: OptimizationProblem, OptimizationFunction, ObjSense,
19+
import SciMLBase: OptimizationProblem,
20+
OptimizationFunction, ObjSense,
2021
MaxSense, MinSense, OptimizationStats
2122
export ObjSense, MaxSense, MinSense
2223

src/state.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,3 @@ function OptimizationState(; iter = 0, u = nothing, objective = nothing,
2525
grad = nothing, hess = nothing, original = nothing)
2626
OptimizationState(iter, u, objective, grad, hess, original)
2727
end
28-

0 commit comments

Comments
 (0)