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
Add AddMultiplicationConstraint(z, x, y) in all languages.
AddMultipleCircuit() in all languages
C++
explicit ctor IntVar(BoolVar)
remove LinearExpr::Add*and replaced them by operator e.g. LinearExpr +=
Add arithmetic operators on linear expression
removed LinearExpr::BooleanSum/BooleanScalProd, use Sum/WeightedSum
Add CpModelBuilder::FixVariable() which overwrite the domain of the variable to a single value
Java
Rewrite LinearExpr, add a incremental builder class: LinearExpr.newBuilder().add(x).addSum(<array of variables).build()
Follow C++ API: Circuit, MultipleCircuit, Cumulative, Reservoir, AllowedAssignment and ForbiddenAssignment now return a specialized class with incremental API to add new variables, terms, demands…
C#
Document all methods
Follow C++ API: Circuit, MultipleCircuit, Cumulative, Reservoir, AllowedAssignment and ForbiddenAssignment now return a specialized class with incremental API to add new variables, terms, demands…
Add LinearExprBuilder class to build expression incrementally.