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:
2025-04-21 09:56:34 -04:00
parent 9d164ef35b
commit afdebb8636

View File

@@ -99,4 +99,5 @@ private:
private:
void updateInverseNonlinearJacobian(const mfem::Operator &grad) const;
void updateInverseSchurCompliment() const;
void updatePreconditioner(const mfem::Operator &grad) const;
};