Navigation
API > API/Runtime > API/Runtime/SignalProcessing > API/Runtime/SignalProcessing/FDirectedGraphAlgo
Description
Build a transpose directed tree from an array of edges.
The transpose of a directed graph is created by reversing each edge.
@parma InEdges - An array of directed eges.
| Name | BuildTransposeDirectedTree |
| Type | function |
| Header File | /Engine/Source/Runtime/SignalProcessing/Public/DSP/DirectedGraphAlgo.h |
| Include Path | #include "DSP/DirectedGraphAlgo.h" |
| Source | /Engine/Source/Runtime/SignalProcessing/Private/DirectedGraphAlgo.cpp |
static PRAGMA_ENABLE_DEPRECATION_WARNINGS static PRAGMA_DISABLE_DEPRECATION_WARNINGS void BuildTransposeDirectedTree
(
TArrayView< const FDirectedEdge > InEdges,
FDirectedTree & OutTree
)
Parameters
| Name | Remarks |
|---|---|
| OutTree | A tree structure built from the reversed edges. |