Using Google OR-Tools, CP-SAT, how do you make an assignment to a BoolVar?

54 Views Asked by At
BoolVar x = model.NewBoolVar("");
model.Add(x == 0);

This is the only way I can determine how to create a simple assignment to a BoolVar. It's suboptimal, though, as Add creates a linear constraint, rather than a Boolean assignment.

1

There are 1 best solutions below

2
On BEST ANSWER
model.AddBoolAnd(x)

Note that the linear is just temporary. It will be presolved away.

In C++, you also have model.FixVariable(x, 0);