Good version for ASMT and MBDyn

This commit is contained in:
Aik-Siong Koh
2023-11-09 14:16:05 -07:00
parent 11a5cff30b
commit f026153c38
69 changed files with 14514 additions and 1495 deletions

View File

@@ -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);
}