12 lines
282 B
C++
12 lines
282 B
C++
#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;
|
|
}
|