[[["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 `SolutionPool` class in C++ manages a collection of solutions for optimization problems."],["It enhances single-point local search into multi-point local search by exploring a wider range of solutions."],["Key methods include `Initialize`, `RegisterNewSolution`, `GetNextSolution`, and `SyncNeeded` to manage and update solutions during the search process."],["`Initialize` sets up the initial solution, `RegisterNewSolution` adds accepted solutions to the pool, and `GetNextSolution` provides the next solution for exploration."],["`SyncNeeded` checks for synchronization between the current local solution and external solutions."]]],["The `SolutionPool` class manages a collection of solutions, enabling multipoint local search. Key actions include: `Initialize`, which populates the pool with an initial `Assignment`; `RegisterNewSolution`, which adds newly accepted solutions; and `GetNextSolution`, which provides an assignment for a new neighborhood search. `SyncNeeded` determines if the current local solution should be updated with an external one. This pool is called when new solutions are accepted or a local search neighborhood is starting.\n"]]