runVelIC
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user