Files
solver/OndselSolver/PosNewtonRaphson.h

25 lines
850 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#pragma once
#include "SystemNewtonRaphson.h"
namespace MbD {
class PosNewtonRaphson : public SystemNewtonRaphson
{
//
public:
void preRun() override;
void incrementIterNo() override;
void askSystemToUpdate() override;
void postRun() override;
};
}