Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Experimental > API/Runtime/Core/Experimental/Graph
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Experimental/Graph/GraphConvert.h |
| Include | #include "Experimental/Graph/GraphConvert.h" |
Syntax
struct FGraph
Remarks
Convenience structure for storing a graph in edge list form. EdgeLists[i] is a TConstArrayView of edges from Vertex i. Each element of EdgeList[i] is a an FVertex j such that (i, j) is an edge in the graph.
Variables
| Type | Name | Description | |
|---|---|---|---|
| TArray64< FVertex > | Buffer | Singular buffer which each element of EdgeLists is a view into. | |
| TArray< TConstArrayView< FVertex > > | EdgeLists | Each member of EdgeLists is a slice of Buffer. |
Constructors
| Type | Name | Description | |
|---|---|---|---|
FGraph () |
|||
| Copy construction not implemented as buffers may be very large and expensive to copy. | |||
Functions
| Type | Name | Description | |
|---|---|---|---|
| SIZE_T |