Patch SparseLU

This commit is contained in:
Charles Schlosser
2022-12-31 04:52:36 +00:00
parent 910f6f65d0
commit a8bab0d8ae
5 changed files with 3 additions and 288 deletions

View File

@@ -40,6 +40,7 @@ public:
SparseLUTransposeView() : APIBase(), m_sparseLU(NULL) {}
SparseLUTransposeView(const SparseLUTransposeView& view) : APIBase() {
this->m_sparseLU = view.m_sparseLU;
this->m_isInitialized = view.m_isInitialized;
}
void setIsInitialized(const bool isInitialized) {this->m_isInitialized = isInitialized;}
void setSparseLU(SparseLUType* sparseLU) {m_sparseLU = sparseLU;}