Skip to content
Snippets Groups Projects
Commit df0cab50 authored by Brian Groenke's avatar Brian Groenke
Browse files

Fix doc parsing error in param ensemble example

parent d8687d65
No related branches found
No related tags found
No related merge requests found
...@@ -73,7 +73,8 @@ function make_prob_func(ensmeble::AbstractMatrix) ...@@ -73,7 +73,8 @@ function make_prob_func(ensmeble::AbstractMatrix)
end end
function output_func(sol, i) 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 return CryoGridOutput(sol), false
end end
...@@ -105,8 +106,8 @@ using ProgressMeter ...@@ -105,8 +106,8 @@ using ProgressMeter
@showprogress for i in axes(prior_ensemble)[2] @showprogress for i in axes(prior_ensemble)[2]
p_i = prior_ensemble[:,i] p_i = prior_ensemble[:,i]
# solve with parameters p_i ## solve with parameters p_i
sol_i = solve(prob, LiteImplicitEuler(), p=p_i) sol_i = solve(prob, LiteImplicitEuler(), p=p_i)
# here we would need to process the output and store the results; ## here we would need to process the output and store the results;
# omitted in this example for brevity ## omitted in this example for brevity
end end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment