v6.10 (2018-11)
Dependencies
- SCIP 4.0.1 -> 6.0.0
Makefile
We have reworked the build and run targets
- To build examples, you must use the
build
target andSOURCE
variable.
This will replace theccc
,cjava
andcdotnet
targets.
e.g. for a C++ example:make build SOURCE=examples/cpp/example.cc
- To run examples, you must use the
run
target andSOURCE
variable.
This will replace thercc
,rjava
andrdotnet
targets.
e.g. for a C++ example:make run SOURCE=examples/cpp/example.cc</pre>
CP-SAT Solver
Update the API
- Add C++ CP-SAT
CpModelBuilder
API.
Examples
- Move community examples to
examples/contrib
- Move some examples to
ortools/<component>/samples
(e.g.
ortools/linear_solver/samples/simple_program.java
)