[[["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."],[[["\u003cp\u003e\u003ccode\u003eBooleanVar\u003c/code\u003e is a class in C++ representing a boolean decision variable in constraint programming.\u003c/p\u003e\n"],["\u003cp\u003eIt provides methods for accessing and modifying the variable's domain, which consists of the values 0 and 1 (false and true).\u003c/p\u003e\n"],["\u003cp\u003eYou can use methods like \u003ccode\u003eMin\u003c/code\u003e, \u003ccode\u003eMax\u003c/code\u003e, \u003ccode\u003eBound\u003c/code\u003e, \u003ccode\u003eValue\u003c/code\u003e to check the variable's current state and possible values.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eBooleanVar\u003c/code\u003e offers functionalities to constrain the variable's values and interact with the solver through methods like \u003ccode\u003eRemoveValue\u003c/code\u003e, \u003ccode\u003eSetRange\u003c/code\u003e, \u003ccode\u003eWhenBound\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThis class inherits from \u003ccode\u003eIntVar\u003c/code\u003e and is part of the Google OR-Tools constraint solver library.\u003c/p\u003e\n"]]],["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"],null,[]]