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: src/moi_wrapper.jl
+67-10Lines changed: 67 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,37 @@
4
4
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.
5
5
6
6
"""
7
-
diff_optimizer(optimizer_constructor)::Optimizer
7
+
DiffMethod
8
+
9
+
An enum to define the differentiation method.
10
+
11
+
## Values
12
+
13
+
Possible values are:
14
+
15
+
* [`DIFF_AUTOMATIC`]: Automatic differentiation: tries all differentiation methods and chooses the first that works. This can be slower than manually choosing a method.
16
+
* [`DIFF_CONIC`]: Conic optimization based differentiation: works for conic programs or programs that can be transformed into conic programs by JuMP.
17
+
* [`DIFF_QUADRATIC`]: Quadratic optimization based differentiation: works for quadratic programs or programs that can be transformed into conic programs by JuMP.
0 commit comments