Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/ensemble/ensemble_problems.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ EnsembleProblem(prob::AbstractSciMLProblem;
## Positional Arguments

- `prob`: The canonical problem of the ensemble problem. This is the prob that is seeded
into each `prob_func` call to be used as the one that is manipulated/changed for each
run of the ensemble.
into each `prob_func` call to be used as the one that is manipulated/changed for each
run of the ensemble.

## Keyword Arguments

Expand Down Expand Up @@ -103,12 +103,12 @@ Each field controls how the ensemble behaves during simulation.

## Arguments

- `prob`: The original base problem to replicate or modify.
- `prob_func`: A function that defines how to generate each subproblem.
- `output_func`: A function to post-process each individual simulation result.
- `reduction`: A function to combine results from all simulations.
- `u_init`: The initial container used to accumulate the results.
- `safetycopy`: Whether to copy the problem when creating subproblems (to avoid unintended modifications).
- `prob`: The original base problem to replicate or modify.
- `prob_func`: A function that defines how to generate each subproblem.
- `output_func`: A function to post-process each individual simulation result.
- `reduction`: A function to combine results from all simulations.
- `u_init`: The initial container used to accumulate the results.
- `safetycopy`: Whether to copy the problem when creating subproblems (to avoid unintended modifications).
"""
struct EnsembleProblem{T, T2, T3, T4, T5} <: AbstractEnsembleProblem
prob::T
Expand Down
Loading