We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1853c7f commit 38004edCopy full SHA for 38004ed
docs/make.jl
@@ -50,6 +50,9 @@ examples = [
50
"Implicit -- Heat 1D DG" => "heat_1D_DG",
51
"Implicit -- Heat 2D" => "heat_2D",
52
"Trixi" => "trixi",
53
+ "Trixi Rosenbrock" => "trixi_rosenbrock",
54
+ "Trixi Rosenbrock Warm Bubble" => "trixi_rosenbrock_warm_bubble",
55
+ "Trixi Rosenbrock Blast Wave" => "trixi_rosenbrock_blast_wave",
56
]
57
58
for (_, name) in examples
src/Ariadne.jl
@@ -373,6 +373,8 @@ function newton_krylov!(
373
374
if forcing !== nothing
375
η = inital(forcing)
376
+ else
377
+ η = missing
378
end
379
380
verbose > 0 && @info "Jacobian-Free Newton-Krylov" algo res₀ = n_res tol tol_rel tol_abs η
0 commit comments