[[["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\u003eThe \u003ccode\u003eSolutionPool\u003c/code\u003e class in C++ manages a collection of solutions for optimization problems.\u003c/p\u003e\n"],["\u003cp\u003eIt enhances single-point local search into multi-point local search by exploring a wider range of solutions.\u003c/p\u003e\n"],["\u003cp\u003eKey methods include \u003ccode\u003eInitialize\u003c/code\u003e, \u003ccode\u003eRegisterNewSolution\u003c/code\u003e, \u003ccode\u003eGetNextSolution\u003c/code\u003e, and \u003ccode\u003eSyncNeeded\u003c/code\u003e to manage and update solutions during the search process.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eInitialize\u003c/code\u003e sets up the initial solution, \u003ccode\u003eRegisterNewSolution\u003c/code\u003e adds accepted solutions to the pool, and \u003ccode\u003eGetNextSolution\u003c/code\u003e provides the next solution for exploration.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eSyncNeeded\u003c/code\u003e checks for synchronization between the current local solution and external solutions.\u003c/p\u003e\n"]]],["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"],null,[]]