Files
solver/MbDCode/VectorNewtonRaphson.h
2023-05-20 17:55:13 -06:00

18 lines
287 B
C++

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