Files
solver/MbDCode/NewtonRaphson.h
Aik-Siong Koh 475b8d16bc First commit
2023-04-26 17:23:31 -06:00

10 lines
113 B
C++

#pragma once
#include "Solver.h"
namespace MbD {
class NewtonRaphson :
public Solver
{
};
}