Skip to content
Snippets Groups Projects
Commit 699a6643 authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[md][newton] remove obsolete constructor for instationary probs

parent 3fd18f81
No related branches found
No related tags found
2 merge requests!1269[1pncmin tests changed],!1239Cleanup MultiDomainNewtonSolver
......@@ -49,7 +49,7 @@ class MultiDomainNewtonSolver: public NewtonSolver<Assembler, LinearSolver, Reas
public:
/*!
* \brief Constructor for stationary problems
* \brief The constructor
*/
MultiDomainNewtonSolver(std::shared_ptr<Assembler> assembler,
std::shared_ptr<LinearSolver> linearSolver,
......@@ -60,20 +60,6 @@ public:
, couplingManager_(couplingManager)
{}
/*!
* \brief Constructor for instationary problems
*/
MultiDomainNewtonSolver(std::shared_ptr<Assembler> assembler,
std::shared_ptr<LinearSolver> linearSolver,
std::shared_ptr<CouplingManager> couplingManager,
std::shared_ptr<TimeLoop<Scalar>> timeLoop,
const Comm& comm = Dune::MPIHelper::getCollectiveCommunication(),
const std::string& paramGroup = "")
: ParentType(assembler, linearSolver, timeLoop, comm, paramGroup)
, couplingManager_(couplingManager)
{}
/*!
* \brief Indicates the beginning of a Newton iteration.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment