[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-06 UTC."],[[["`BooleanVar` is a class in C++ representing a boolean decision variable in constraint programming."],["It provides methods for accessing and modifying the variable's domain, which consists of the values 0 and 1 (false and true)."],["You can use methods like `Min`, `Max`, `Bound`, `Value` to check the variable's current state and possible values."],["`BooleanVar` offers functionalities to constrain the variable's values and interact with the solver through methods like `RemoveValue`, `SetRange`, `WhenBound`."],["This class inherits from `IntVar` and is part of the Google OR-Tools constraint solver library."]]],["The `BooleanVar` class in C++ provides methods for managing boolean variables within a constraint solver. Key actions include: setting and getting the minimum/maximum values (`SetMin`, `SetMax`, `Min`, `Max`), setting ranges (`SetRange`), and checking if a value is contained (`Contains`). It allows removing values or intervals (`RemoveValue`, `RemoveInterval`), and checking the bounds or values of a variable (`Bound`, `Value`). Methods for checking if the variables is different, equal, greater or less are also available. Iterators are also available.\n"]]