[[["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\u003eSharedLPSolutionRepository\u003c/code\u003e class in C++ is designed to manage and share LP solutions among different parts of an optimization model.\u003c/p\u003e\n"],["\u003cp\u003eIt provides methods such as \u003ccode\u003eNewLPSolution\u003c/code\u003e to add new solutions and stores a specified number of solutions determined during initialization.\u003c/p\u003e\n"]]],["The `SharedLPSolutionRepository` class in C++ has two core methods. `NewLPSolution` accepts a `std::vector\u003cdouble\u003e` named `lp_solution` as input and returns void, implying it updates an internal state based on the provided solution. The `SharedLPSolutionRepository` constructor takes an integer, `num_solutions_to_keep`, which likely dictates the number of solutions to be stored within the repository. This indicates that the class is used to store and manage multiple LP solutions.\n"],null,["# SharedLPSolutionRepository\n\nC++ Reference: class SharedLPSolutionRepository\n===============================================\n\n\nNote: This documentation is automatically generated.\n\n| Method ||\n|-----------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------|\n| [`NewLPSolution`](https://github.com/google/or-tools/blob/v9.4/ortools/sat/synchronization.h#L150) | Return type: `void ` Arguments: `std::vector\u003cdouble\u003e lp_solution` \u003cbr /\u003e |\n| [`SharedLPSolutionRepository`](https://github.com/google/or-tools/blob/v9.4/ortools/sat/synchronization.h#L147) | Return type: `explicit ` Arguments: `int num_solutions_to_keep` \u003cbr /\u003e |"]]