[[["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."],[[["`BasePathFilter` is a C++ class within the OR-Tools constraint solver that works with routing problems."],["It utilizes a vector of `IntVar*` representing next nodes and their domain size for filtering."],["This class includes methods like `Accept` and `OnSynchronize` for controlling search and synchronization during constraint solving."],["`Accept` determines whether a solution is accepted based on objective values and deltas, while `OnSynchronize` updates the filter's state."]]],["The `BasePathFilter` class in C++ defines methods for managing path filtering. The constructor `BasePathFilter` initializes the filter with a vector of `IntVar*` (nexts) and an integer `next_domain_size`. `Accept` determines if a given assignment is acceptable, taking in assignments and objective bounds. `OnSynchronize` updates the filter based on a given assignment `delta`. `~BasePathFilter` is the destructor.\n"]]