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

20 lines
410 B
C++

#pragma once
#include "VectorNewtonRaphson.h"
#include "SparseMatrix.h"
namespace MbD {
//class SparseMatrix;
class SystemNewtonRaphson : public VectorNewtonRaphson
{
//
public:
void initializeGlobally() override;
virtual void assignEquationNumbers() = 0;
virtual void createVectorsAndMatrices();
std::shared_ptr<SparseMatrix<double>> pypx;
};
}