Files
solver/MbDCode/NewtonRaphson.h
2023-05-12 21:50:11 -06:00

19 lines
432 B
C++

#pragma once
#include <memory>
#include "Solver.h"
#include "FullColumn.h"
namespace MbD {
class NewtonRaphson : public Solver
{
//system xold x dx dxNorm dxNorms dxTol y yNorm yNormOld yNorms yNormTol pypx iterNo iterMax nDivergence nBackTracking twoAlp lam
public:
std::shared_ptr<FullColumn<double>> xold, x, dx, dxTol, y;
double dxNorm, yNorm, yNormOld, yNormTol, twoAlp, lam;
};
}