refactor(operator): added updatePreconditioner method
the preconditioner must be built once before the solver begins to iterater, by putting the logic for this in a dedicated method it becomes cleaner to call
This commit is contained in:
@@ -99,4 +99,5 @@ private:
|
|||||||
private:
|
private:
|
||||||
void updateInverseNonlinearJacobian(const mfem::Operator &grad) const;
|
void updateInverseNonlinearJacobian(const mfem::Operator &grad) const;
|
||||||
void updateInverseSchurCompliment() const;
|
void updateInverseSchurCompliment() const;
|
||||||
|
void updatePreconditioner(const mfem::Operator &grad) const;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user