[[["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."],[[["`CallMethod3` is a class within the OR-Tools constraint solver that facilitates calling a three-parameter method on an object."],["It provides methods to execute the target method (`Run`), generate debug information (`DebugString`), and manage its lifecycle (`CallMethod3`, `~CallMethod3`)."],["Users specify the object, method, parameters, and a descriptive name during construction."],["The class is primarily used for invoking methods on constraint objects within the solver framework."]]],["The `CallMethod3` class in C++ allows invoking a method on an object. It takes a pointer to an object (`T* const ct`), a pointer to a method (`void (T::*method)(P, Q, R)`), a name (`const std::string& name`), and three parameters (`P param1, Q param2, R param3`). Key actions include running the specified method via the `Run` method, which requires a `Solver*` object. The class also provides a `DebugString` method to get a string representation and a destructor `~CallMethod3`.\n"]]