Navigation
API > API/Runtime > API/Runtime/GeometryCore > API/Runtime/GeometryCore/Solvers
References
| Module | GeometryCore |
| Header | /Engine/Source/Runtime/GeometryCore/Public/Solvers/MatrixInterfaces.h |
| Include | #include "Solvers/MatrixInterfaces.h" |
Syntax
template<typename RealType>
class TSparseMatrixAssembler
Remarks
Generic adapter for building a Sparse Matrix. Generally sparse-matrix assembly code emits matrix entries as tuples of form (i,j,Value).
Variables
| Type | Name | Description | |
|---|---|---|---|
| TUniqueFunction< void(int32, int32, RealType)> | AddEntryFunc | Add matrix entry tuple (i,j,Value) | |
| TUniqueFunction< void(int32)> | ReserveEntriesFunc | Hint to reserve space for at least this many entries |