Navigation
API > API/Runtime > API/Runtime/SignalProcessing > API/Runtime/SignalProcessing/DSP > API/Runtime/SignalProcessing/DSP/FDirectedGraphAlgo
References
| Module | SignalProcessing |
| Header | /Engine/Source/Runtime/SignalProcessing/Public/DSP/DirectedGraphAlgo.h |
| Include | #include "DSP/DirectedGraphAlgo.h" |
| Source | /Engine/Source/Runtime/SignalProcessing/Private/DirectedGraphAlgo.cpp |
static void BreadthFirstTraversal
&40;
int32 InInitialVertex,
const FDirectedTree & InTree,
TFunctionRef< bool(int32)> InVisitFunc
&41;
Remarks
Traverse a tree in a breadth first ordering.
Parameters
| Name | Description |
|---|---|
| InInitialVertex | The starting vertex for traversal. |
| InTree | The tree structure to traverse. |
| InVisitFunc | A function that is called for each vertex that is visited. If this function returns true, the children of this vertex will be visited in the future. If this function returns false, then the children of the current vertex will not be visited. |