[[["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."],[[["The `IntegerSearchHelper` class in C++ is designed to facilitate code sharing across different types of search algorithms."],["It provides methods for executing code before decisions (`BeforeTakingDecision`), selecting decisions (`GetDecision`), and implementing decisions (`TakeDecision`)."],["The `GetDecision` method utilizes decision heuristics to identify a non-fixed literal, while `TakeDecision` attempts to apply the decision and may trigger backjumps if necessary."],["Both `BeforeTakingDecision` and `TakeDecision` return `false` if the model becomes unsatisfiable during their execution."]]],["The `IntegerSearchHelper` class facilitates code sharing for different search types. Key actions include: `BeforeTakingDecision`, which executes code before a decision and checks model satisfaction; `GetDecision`, which calls decision heuristics to extract a non-fixed literal; `TakeDecision`, which attempts to apply a given decision and may trigger a backjump if needed; and the class constructor `IntegerSearchHelper`, that take the model as an argument. All are used in the searching process.\n"]]