[[["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\u003eMakePairInactiveOperator\u003c/code\u003e is designed to deactivate pairs of active nodes within a routing problem.\u003c/p\u003e\n"],["\u003cp\u003eThis operator utilizes primary and secondary variables, a function to determine empty path classes, and index pairs for its operation.\u003c/p\u003e\n"],["\u003cp\u003eIt provides methods for debugging (\u003ccode\u003eDebugString\u003c/code\u003e) and creating neighbors (\u003ccode\u003eMakeNeighbor\u003c/code\u003e).\u003c/p\u003e\n"]]],["The `MakePairInactiveOperator` class in C++ deactivates pairs of active nodes. It has three primary methods: `DebugString`, which returns a string; `MakeNeighbor`, which returns a boolean; and `MakePairInactiveOperator`, which is the constructor. The constructor takes vectors of `IntVar*` (primary and secondary variables), a function `start_empty_path_class` mapping `int64_t` to `int`, and `RoutingIndexPairs`. These methods work together to make specified pairs of nodes inactive.\n"],null,["# MakePairInactiveOperator\n\nC++ Reference: class MakePairInactiveOperator\n=============================================\n\n\nNote: This documentation is automatically generated.\nOperator which makes pairs of active nodes inactive.\n\n| Method ||\n|-----------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [`DebugString`](https://github.com/google/or-tools/blob/v9.4/ortools/constraint_solver/routing_neighborhoods.h#L157) | Return type: `std::string ` \u003cbr /\u003e |\n| [`MakeNeighbor`](https://github.com/google/or-tools/blob/v9.4/ortools/constraint_solver/routing_neighborhoods.h#L156) | Return type: `bool ` \u003cbr /\u003e |\n| [`MakePairInactiveOperator`](https://github.com/google/or-tools/blob/v9.4/ortools/constraint_solver/routing_neighborhoods.h#L151) | \u003cbr /\u003e Arguments: `const std::vector\u003cIntVar*\u003e& vars, const std::vector\u003cIntVar*\u003e& secondary_vars, std::function\u003cint(int64_t)\u003e start_empty_path_class, const RoutingIndexPairs& index_pairs` \u003cbr /\u003e |"]]