mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
fixed: mark methods as override
This commit is contained in:
parent
a84d05c83b
commit
6b5c7b66fd
@ -130,18 +130,18 @@ namespace Opm {
|
|||||||
/////////////
|
/////////////
|
||||||
// <eWoms auxiliary module stuff>
|
// <eWoms auxiliary module stuff>
|
||||||
/////////////
|
/////////////
|
||||||
unsigned numDofs() const
|
unsigned numDofs() const override
|
||||||
// No extra dofs are inserted for wells. (we use a Schur complement.)
|
// No extra dofs are inserted for wells. (we use a Schur complement.)
|
||||||
{ return 0; }
|
{ return 0; }
|
||||||
|
|
||||||
void addNeighbors(std::vector<NeighborSet>& neighbors) const;
|
void addNeighbors(std::vector<NeighborSet>& neighbors) const override;
|
||||||
|
|
||||||
void applyInitial()
|
void applyInitial() override
|
||||||
{}
|
{}
|
||||||
|
|
||||||
void linearize(SparseMatrixAdapter& jacobian, GlobalEqVector& res);
|
void linearize(SparseMatrixAdapter& jacobian, GlobalEqVector& res) override;
|
||||||
|
|
||||||
void postSolve(GlobalEqVector& deltaX)
|
void postSolve(GlobalEqVector& deltaX) override
|
||||||
{
|
{
|
||||||
recoverWellSolutionAndUpdateWellState(deltaX);
|
recoverWellSolutionAndUpdateWellState(deltaX);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user