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

18 lines
356 B
C++

#pragma once
#include "NewtonRaphson.h"
#include "MatrixSolver.h"
namespace MbD {
class VectorNewtonRaphson : public NewtonRaphson
{
//matrixSolver n
public:
void run() override;
virtual std::shared_ptr<MatrixSolver> matrixSolverClassNew();
std::shared_ptr<MatrixSolver> matrixSolver;
int n;
};
}