systemSolver->runBasicKinematic();

This commit is contained in:
Aik-Siong Koh
2023-06-11 07:15:20 -06:00
parent d848450907
commit 3b08cd72df
182 changed files with 2789 additions and 535 deletions

11
MbDCode/GESpMat.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include "GESpMat.h"
#include "FullColumn.h"
#include "SparseMatrix.h"
using namespace MbD;
FColDsptr MbD::GESpMat::solvewithsaveOriginal(SpMatDsptr spMat, FColDsptr fullCol, bool saveOriginal)
{
this->timedSolvewithsaveOriginal(spMat, fullCol, saveOriginal);
return answerX;
}