From df0cab500212fb26a4918caead078306d5127fc0 Mon Sep 17 00:00:00 2001 From: Brian Groenke <brian.groenke@awi.de> Date: Mon, 9 Dec 2024 17:50:05 +0100 Subject: [PATCH] Fix doc parsing error in param ensemble example --- examples/cglite_parameter_ensembles.jl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/cglite_parameter_ensembles.jl b/examples/cglite_parameter_ensembles.jl index 7bf934bb..174e35d1 100644 --- a/examples/cglite_parameter_ensembles.jl +++ b/examples/cglite_parameter_ensembles.jl @@ -73,7 +73,8 @@ function make_prob_func(ensmeble::AbstractMatrix) end function output_func(sol, i) - # return CryoGridOutput; false indicates that the run does not need to be repeated + ## return output and repeat signal; + ## false indicates that the run does not need to be repeated return CryoGridOutput(sol), false end @@ -105,8 +106,8 @@ using ProgressMeter @showprogress for i in axes(prior_ensemble)[2] p_i = prior_ensemble[:,i] - # solve with parameters p_i + ## solve with parameters p_i sol_i = solve(prob, LiteImplicitEuler(), p=p_i) - # here we would need to process the output and store the results; - # omitted in this example for brevity + ## here we would need to process the output and store the results; + ## omitted in this example for brevity end -- GitLab