Files
solver/MbDCode/VectorNewtonRaphson.cpp
2023-05-27 21:43:09 -06:00

21 lines
412 B
C++

#include <memory>
#include "VectorNewtonRaphson.h"
#include "MatrixSolver.h"
#include "GEFullMatParPv.h"
using namespace MbD;
void MbD::VectorNewtonRaphson::run()
{
this->preRun();
this->initializeLocally();
this->initializeGlobally();
this->iterate();
this->postRun();
}
std::shared_ptr<MatrixSolver> MbD::VectorNewtonRaphson::matrixSolverClassNew()
{
return std::make_shared<GEFullMatParPv>();
}