forked from coin-or/python-mip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNEWS
More file actions
29 lines (17 loc) · 807 Bytes
/
NEWS
File metadata and controls
29 lines (17 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
1.7.0
~~~~~
- now specific generators can be called outside the tree search to strengthen
your formulation with the generate_cuts method. This is a CBC only feature
(Gurobi does not allow access to its cut generators).
- A stability fix for CBC is included: in some cases an incorrect
solution/optimization status was produced in searches truncated by time.
1.6.0
~~~~~
- selection of which linear programming method (Primal Simplex, Dual Simplex or
Barrier) will be used to solve the root node relaxation (lp_method attribute
of Model)
- read/write property RHS in Constraint
- pytest for tests - thanks @pmla
- do not throw exception when querying an unavailable solution: just return
None instead, to fix problem in some debuggers
- improved documentation - specially for the examples