[[["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."],[[["`ProfiledDecisionBuilder` is a class within the OR-Tools Constraint Solver library used for profiling the performance of a `DecisionBuilder`."],["It wraps an existing `DecisionBuilder` and tracks the time spent in its `Next` method."],["The class provides methods for accessing the profiling data, such as the total time spent and the name of the underlying `DecisionBuilder`."],["You can integrate `ProfiledDecisionBuilder` with the `Solver` and `SearchMonitors` to monitor and analyze decision-making performance during the search process."]]],["The `ProfiledDecisionBuilder` class in C++ offers several methods: `Accept` to handle a `ModelVisitor`, `AppendMonitors` to add `SearchMonitor`s to a `Solver`, `DebugString` to provide a string representation, and `Next` to get the next `Decision` from a `Solver`. The `ProfiledDecisionBuilder` constructor takes a `DecisionBuilder`, while the destructor is `~ProfiledDecisionBuilder`. Methods are also present for getting the `name` and time in `seconds`.\n"]]