File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ Two types of logical constraints are supported:
70
70
- ` ∨` or ` logical_or` or ` ||` (OR, typed with ` \v ee + tab` ).
71
71
- ` ∧` or ` logical_and` or ` &&` (AND, typed with ` \w edge + tab` ).
72
72
- ` ¬` or ` logical_not` (NOT, typed with ` \n eg + tab` ).
73
- - ` ⟹` of ` implies` (Implication, typed with ` \L ongrightarrow + tab` ).
73
+ - ` ⟹` or ` implies` (Implication, typed with ` \L ongrightarrow + tab` ).
74
74
- ` ⇔` or ` iff` or ` ==` (double implication or equivalence, typed with ` \L eftrightarrow + tab` ).
75
75
76
76
The ` @constraint` JuMP macro is used to create these constraints using ` :=` :
Original file line number Diff line number Diff line change 18
18
# See https://github.com/jump-dev/JuMP.jl/blob/9ea1df38fd320f864ab4c93c78631d0f15939c0b/src/JuMP.jl#L718-L745
19
19
function _optimize_hook (
20
20
model:: Model ;
21
- method:: AbstractSolutionMethod
21
+ method:: AbstractSolutionMethod = BigM ()
22
22
) # can add more kwargs if wanted
23
23
if ! _ready_to_optimize (model) || _solution_method (model) != method
24
24
reformulate_model (model, method)
You can’t perform that action at this time.
0 commit comments