File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
controller_manager/include/controller_manager Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ struct ControllerPeerInfo
49
49
std::unordered_set<std::string> reference_interfaces = {};
50
50
std::vector<std::unordered_set<std::string>> mutually_exclusive_predecessor_groups = {};
51
51
52
- void build_mutually_exclusive_groups ()
52
+ void build_mutually_exclusive_predecessor_groups ()
53
53
{
54
54
// Build mutually exclusive groups of predecessor controllers, that could utilize all the
55
55
// reference interfaces of the current controller. This is used to determine which predecessor
@@ -418,7 +418,7 @@ class ControllerChainDependencyGraph
418
418
{
419
419
return {};
420
420
}
421
- controller_graph_[controller_name].build_mutually_exclusive_groups ();
421
+ controller_graph_[controller_name].build_mutually_exclusive_predecessor_groups ();
422
422
controller_graph_[controller_name].get_controllers_to_activate (controllers_to_activate);
423
423
return controllers_to_activate;
424
424
}
@@ -434,7 +434,7 @@ class ControllerChainDependencyGraph
434
434
{
435
435
return {};
436
436
}
437
- controller_graph_[controller_name].build_mutually_exclusive_groups ();
437
+ controller_graph_[controller_name].build_mutually_exclusive_predecessor_groups ();
438
438
controller_graph_[controller_name].get_controllers_to_deactivate (controllers_to_deactivate);
439
439
return controllers_to_deactivate;
440
440
}
You can’t perform that action at this time.
0 commit comments