diff --git a/examples/problems/fractureproblem.hh b/examples/problems/fractureproblem.hh index ac411ddb9..2d95406c7 100644 --- a/examples/problems/fractureproblem.hh +++ b/examples/problems/fractureproblem.hh @@ -495,7 +495,7 @@ public: // and features a fracture, specify the fracture fluid // state. FluidState fractureFluidState; - fractureFluidState.setTemperature(temperature_ + 10); + fractureFluidState.setTemperature(temperature_ + 10.0); fractureFluidState.setSaturation(wettingPhaseIdx, 1.0); fractureFluidState.setSaturation(nonWettingPhaseIdx, diff --git a/examples/problems/richardslensproblem.hh b/examples/problems/richardslensproblem.hh index 656edc8b6..70858ca4f 100644 --- a/examples/problems/richardslensproblem.hh +++ b/examples/problems/richardslensproblem.hh @@ -91,9 +91,6 @@ public: // Enable gravitational acceleration SET_BOOL_PROP(RichardsLensProblem, EnableGravity, true); -// Only relinearize the parts where the current solution is sufficiently "bad" -SET_BOOL_PROP(RichardsLensProblem, EnablePartialRelinearization, true); - // Use central differences to approximate the Jacobian matrix SET_INT_PROP(RichardsLensProblem, NumericDifferenceMethod, 0);