Starts or continues probing variables and their bounds.
It returns:
- SatSolver::INFEASIBLE if the problem is proven infeasible.
- SatSolver::FEASIBLE when a feasible solution is found
- SatSolver::LIMIT_REACHED if the limit stored in the model is reached
Calling Probe() after it has returned FEASIBLE or LIMIT_REACHED will resume
probing from its previous state.
[[["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 `ContinuousProber` class in C++ repeatedly examines model variables, attempting to refine their bounds through probing and shaving techniques."],["It utilizes the `CpModelProto` to identify variables for probing and interacts with the `Model` object."],["The `Probe` method initiates or resumes the probing process, returning status indicators such as `INFEASIBLE`, `FEASIBLE`, or `LIMIT_REACHED` based on the probing outcomes."],["Resuming probing after reaching `FEASIBLE` or `LIMIT_REACHED` continues from the previous state."]]],["The `ContinuousProber` class iteratively probes and shaves bounds of model variables. It takes a `CpModelProto` and a `Model` as arguments to determine which variables to probe. The `Probe` method initiates or continues this process, returning the status of the solver: `INFEASIBLE` if infeasible, `FEASIBLE` if a solution is found, or `LIMIT_REACHED` if a limit is hit. Subsequent calls to `Probe` resume from the previous state.\n"]]