Skip to content

Commit

Permalink
ODE->Ensemble
Browse files Browse the repository at this point in the history
  • Loading branch information
Pepijn de Vos committed Sep 29, 2023
1 parent 63b1299 commit 2ad98ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ensemble/basic_ensemble_solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function __solve(prob::AbstractEnsembleProblem,
num_batches * batch_size != trajectories && (num_batches += 1)

if get(kwargs, :progress, false)
name = get(kwargs, :progress_name, "ODE")
name = get(kwargs, :progress_name, "Ensemble")
for i in 1:trajectories
@logmsg(LogLevel(-1), "$name #$i", _id=Symbol("SciMLBase_$i"), progress=0)
end

Check warning on line 68 in src/ensemble/basic_ensemble_solve.jl

View check run for this annotation

Codecov / codecov/patch

src/ensemble/basic_ensemble_solve.jl#L64-L68

Added lines #L64 - L68 were not covered by tests
Expand Down Expand Up @@ -106,7 +106,7 @@ function batch_func(i, prob, alg; kwargs...)
new_prob = prob.prob_func(_prob, i, iter)
rerun = true

name = get(kwargs, :progress_name, "ODE")
name = get(kwargs, :progress_name, "Ensemble")
progress_name = "$name #$i"
progress_id = Symbol("SciMLBase_$i")

Check warning on line 111 in src/ensemble/basic_ensemble_solve.jl

View check run for this annotation

Codecov / codecov/patch

src/ensemble/basic_ensemble_solve.jl#L109-L111

Added lines #L109 - L111 were not covered by tests

Expand Down

0 comments on commit 2ad98ac

Please sign in to comment.