This commit is contained in:
Aik-Siong Koh
2023-06-18 01:06:39 -06:00
parent 3b08cd72df
commit 371b13a9e0
147 changed files with 2555 additions and 238 deletions

View File

@@ -1 +1,13 @@
#include "MatrixDecomposition.h"
using namespace MbD;
void MbD::MatrixDecomposition::applyRowOrderOnRightHandSideB()
{
FColDsptr answer = std::make_shared<FullColumn<double>>(m);
for (int i = 0; i < m; i++)
{
answer->at(i) = rightHandSideB->at(rowOrder->at(i));
}
rightHandSideB = answer;
}