Skip to content

Commit 3515c3e

Browse files
committed
Rename to build_mutually_exclusive_predecessor_groups
1 parent 5841232 commit 3515c3e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

controller_manager/include/controller_manager/controller_spec.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ struct ControllerPeerInfo
4949
std::unordered_set<std::string> reference_interfaces = {};
5050
std::vector<std::unordered_set<std::string>> mutually_exclusive_predecessor_groups = {};
5151

52-
void build_mutually_exclusive_groups()
52+
void build_mutually_exclusive_predecessor_groups()
5353
{
5454
// Build mutually exclusive groups of predecessor controllers, that could utilize all the
5555
// reference interfaces of the current controller. This is used to determine which predecessor
@@ -418,7 +418,7 @@ class ControllerChainDependencyGraph
418418
{
419419
return {};
420420
}
421-
controller_graph_[controller_name].build_mutually_exclusive_groups();
421+
controller_graph_[controller_name].build_mutually_exclusive_predecessor_groups();
422422
controller_graph_[controller_name].get_controllers_to_activate(controllers_to_activate);
423423
return controllers_to_activate;
424424
}
@@ -434,7 +434,7 @@ class ControllerChainDependencyGraph
434434
{
435435
return {};
436436
}
437-
controller_graph_[controller_name].build_mutually_exclusive_groups();
437+
controller_graph_[controller_name].build_mutually_exclusive_predecessor_groups();
438438
controller_graph_[controller_name].get_controllers_to_deactivate(controllers_to_deactivate);
439439
return controllers_to_deactivate;
440440
}

0 commit comments

Comments
 (0)