@@ -250,8 +250,7 @@ Abstract Type for the Caches created by AbstractDampingFunctions
250250 - `requires_normal_form_rhs(f)`: whether or not the residual is needed in normal form.
251251 No default.
252252 - `returns_norm_form_damping(f)`: whether or not the damping function returns the
253- damping factor in normal form. Defaults to `requires_normal_form_jacobian(f) ||
254- requires_normal_form_rhs(f)`.
253+ damping factor in normal form. Defaults to `requires_normal_form_jacobian(f) || requires_normal_form_rhs(f)`.
255254 - `(cache::AbstractDampingFunctionCache)(::Nothing)`: returns the damping factor. The type
256255 of the damping factor returned from `solve!` is guaranteed to be the same as this.
257256
@@ -315,8 +314,8 @@ Abstract Type for all Jacobian Initialization Algorithms used in NonlinearSolve.
315314
316315```julia
317316SciMLBase.init(prob::AbstractNonlinearProblem, alg::AbstractJacobianInitialization,
318- solver, f::F, fu, u, p; linsolve = missing, internalnorm::IN = DEFAULT_NORM,
319- kwargs...)
317+ solver, f::F, fu, u, p; linsolve = missing, internalnorm::IN = DEFAULT_NORM,
318+ kwargs...)
320319```
321320
322321Returns a [`NonlinearSolve.InitializedApproximateJacobianCache`](@ref).
@@ -366,13 +365,13 @@ Abstract Type for all Approximate Jacobian Update Rule Caches used in NonlinearS
366365
367366### Interface Functions
368367
369- - `store_inverse_jacobian(alg)`: Return `INV`
368+ - `store_inverse_jacobian(alg)`: Return `INV`
370369
371370### `SciMLBase.solve!` specification
372371
373372```julia
374373SciMLBase.solve!(cache::AbstractApproximateJacobianUpdateRuleCache, J, fu, u, du;
375- kwargs...) --> J or J⁻¹
374+ kwargs...) --> J / J⁻¹
376375```
377376"""
378377abstract type AbstractApproximateJacobianUpdateRuleCache{INV} end
0 commit comments