Navigation
API > API/Plugins > API/Plugins/MetasoundGraphCore > API/Plugins/MetasoundGraphCore/FDirectedGraphAlgo
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static void FindReachableNodes
(
const IGraph& InGraph, |
Finds all nodes which can be reached by traversing the graph beginning from FInputDataDestinations or by traversing the transpose graph beginning from FOutputDataSource nodes. | MetasoundGraphAlgo.h | |
static void FindReachableNodes
(
const FDirectedGraphAlgoAdapter& InAdapter, |
Finds all nodes which can be reached by traversing the graph beginning from FInputDataDestinations or by traversing the transpose graph beginning from FOutputDataSource nodes. | MetasoundGraphAlgo.h |
FindReachableNodes(const IGraph &, TSet< const INode * > &)
Description
Finds all nodes which can be reached by traversing the graph beginning from FInputDataDestinations or by traversing the transpose graph beginning from FOutputDataSource nodes.
| Name | FindReachableNodes |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Metasound/Source/MetasoundGraphCore/Public/MetasoundGraphAlgo.h |
| Include Path | #include "MetasoundGraphAlgo.h" |
| Source | /Engine/Plugins/Runtime/Metasound/Source/MetasoundGraphCore/Private/MetasoundGraphAlgo.cpp |
static void FindReachableNodes
(
const IGraph & InGraph,
TSet < const INode * > & OutNodes
)
Parameters
| Name | Remarks |
|---|---|
| InGraph | The graph to be traversed. |
| OutNodes | The nodes which were reached during traversal. |
FindReachableNodes(const FDirectedGraphAlgoAdapter &, TSet< const INode * > &)
Description
Finds all nodes which can be reached by traversing the graph beginning from FInputDataDestinations or by traversing the transpose graph beginning from FOutputDataSource nodes.
| Name | FindReachableNodes |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Metasound/Source/MetasoundGraphCore/Public/MetasoundGraphAlgo.h |
| Include Path | #include "MetasoundGraphAlgo.h" |
| Source | /Engine/Plugins/Runtime/Metasound/Source/MetasoundGraphCore/Private/MetasoundGraphAlgo.cpp |
static void FindReachableNodes
(
const FDirectedGraphAlgoAdapter & InAdapter,
TSet < const INode * > & OutNodes
)
Parameters
| Name | Remarks |
|---|---|
| InAdapter | The adapter to be traversed. |
| OutNodes | The nodes which were reached during traversal. |