Good version for ASMT and MBDyn
This commit is contained in:
@@ -10,6 +10,12 @@
|
||||
|
||||
using namespace MbD;
|
||||
|
||||
FColDsptr MbD::MatrixDecomposition::forAndBackSubsaveOriginal(FColDsptr fullCol, bool saveOriginal)
|
||||
{
|
||||
assert(false);
|
||||
return FColDsptr();
|
||||
}
|
||||
|
||||
void MatrixDecomposition::applyRowOrderOnRightHandSideB()
|
||||
{
|
||||
FColDsptr answer = std::make_shared<FullColumn<double>>(m);
|
||||
@@ -19,3 +25,34 @@ void MatrixDecomposition::applyRowOrderOnRightHandSideB()
|
||||
}
|
||||
rightHandSideB = answer;
|
||||
}
|
||||
|
||||
FColDsptr MbD::MatrixDecomposition::basicSolvewithsaveOriginal(FMatDsptr aMatrix, FColDsptr aVector, bool saveOriginal)
|
||||
{
|
||||
assert(false);
|
||||
return FColDsptr();
|
||||
}
|
||||
|
||||
void MbD::MatrixDecomposition::forwardSubstituteIntoL()
|
||||
{
|
||||
assert(false);
|
||||
}
|
||||
|
||||
void MbD::MatrixDecomposition::backSubstituteIntoU()
|
||||
{
|
||||
assert(false);
|
||||
}
|
||||
|
||||
void MbD::MatrixDecomposition::forwardSubstituteIntoLD()
|
||||
{
|
||||
assert(false);
|
||||
}
|
||||
|
||||
void MbD::MatrixDecomposition::postSolve()
|
||||
{
|
||||
assert(false);
|
||||
}
|
||||
|
||||
void MbD::MatrixDecomposition::preSolvesaveOriginal(FMatDsptr aMatrix, bool saveOriginal)
|
||||
{
|
||||
assert(false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user