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: README.md
+5-10
Original file line number
Diff line number
Diff line change
@@ -34,19 +34,17 @@ If you do not want BinaryProvider to download the default binaries on install se
34
34
35
35
To switch back to the default binaries clear `JULIA_CBC_LIBRARY_PATH` and call `import Pkg; Pkg.build("Cbc")`.
36
36
37
-
### Using with **[MathProgBase]**
38
-
39
-
Cbc provides a solver object that can be passed to ``mixintprog`` in MathProgBase (and used to create instances of the solver-independent ``AbstractMathProgModel`` type):
37
+
### Using with **[JuMP](https://github.com/JuMP.jl)**
model =Model(with_optimizer(Cbc.Optimizer, logLevel=1))
45
44
```
46
45
47
-
see the MathProgBase documentation for further information.
48
-
49
46
Options are solver-dependent, and unfortunately not well documented.
47
+
50
48
The following options are likely to be the most useful:
51
49
52
50
*``seconds`` -- Solution timeout limit. (Must be a ``Float64``)
@@ -59,8 +57,6 @@ The following options are likely to be the most useful:
59
57
60
58
The complete list of parameters can be found by running the ``cbc`` executable and typing ``?`` at the prompt.
61
59
62
-
In addition, we provide the julia-specific option ``check_warmstart`` which, if set to ``false``, will tell the wrapper to pass along the warmstart solution regardless of if it satisfies the constraints of the problem. The default value is ``true``.
63
-
64
60
### Using the C interface
65
61
66
62
The low-level C interface is available in the ``CbcCInterface`` submodule:
0 commit comments