This method is called to check the status of the limit. A return
value of true indicates that we have indeed crossed the limit. In
that case, this method will not be called again and the remaining
search will be discarded.
[[["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\u003eSearchLimit\u003c/code\u003e serves as the base class for all search limits in constraint programming.\u003c/p\u003e\n"],["\u003cp\u003eIt provides essential methods for controlling and monitoring the search process, such as \u003ccode\u003eCheck\u003c/code\u003e to determine if a limit has been reached, and \u003ccode\u003eInit\u003c/code\u003e for initialization.\u003c/p\u003e\n"],["\u003cp\u003eLimits can be copied and cloned using methods like \u003ccode\u003eCopy\u003c/code\u003e and \u003ccode\u003eMakeClone\u003c/code\u003e, ensuring flexibility in managing search behavior.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eSearchLimit\u003c/code\u003e offers functionalities for interacting with decisions during search, including \u003ccode\u003eBeginNextDecision\u003c/code\u003e and \u003ccode\u003eRefuteDecision\u003c/code\u003e, allowing for fine-grained control over exploration.\u003c/p\u003e\n"]]],["The `SearchLimit` class serves as the base for all search limits. Key actions include initializing limits via `Init`, checking limit status with `Check` (returning `true` if crossed), and determining if a limit has been surpassed via `crossed`. Limits can be cloned using `MakeClone` or copied with `Copy`. Other functionalities involve `BeginNextDecision`, `PeriodicCheck`, `RefuteDecision`, `EnterSearch`, and producing a debug string via `DebugString`. It also has a constructor `SearchLimit` and destructor `~SearchLimit`.\n"],null,[]]