You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -193,6 +201,7 @@ Above, ``\hat{S}_n`` are the stochastic collapse operators and ``dW_n(t)`` is t
193
201
- `prob_func`: Function to use for generating the SDEProblem.
194
202
- `output_func`: a `Tuple` containing the `Function` to use for generating the output of a single trajectory, the (optional) `ProgressBar` object, and the (optional) `RemoteChannel` object.
195
203
- `progress_bar`: Whether to show the progress bar. Using non-`Val` types might lead to type instabilities.
204
+
- `store_measurement`: Whether to store the measurement results. Default is `Val(false)`.
196
205
- `kwargs`: The keyword arguments for the ODEProblem.
197
206
198
207
# Notes
@@ -219,11 +228,19 @@ function ssesolveEnsembleProblem(
@@ -237,6 +254,7 @@ function ssesolveEnsembleProblem(
237
254
params = params,
238
255
rng = rng,
239
256
progress_bar =Val(false),
257
+
store_measurement =makeVal(store_measurement),
240
258
kwargs...,
241
259
)
242
260
@@ -265,6 +283,7 @@ end
265
283
prob_func::Union{Function, Nothing} = nothing,
266
284
output_func::Union{Tuple,Nothing} = nothing,
267
285
progress_bar::Union{Val,Bool} = Val(true),
286
+
store_measurement::Union{Val,Bool} = Val(false),
268
287
kwargs...,
269
288
)
270
289
@@ -307,6 +326,7 @@ Above, ``\hat{S}_n`` are the stochastic collapse operators and ``dW_n(t)`` is th
307
326
- `prob_func`: Function to use for generating the SDEProblem.
308
327
- `output_func`: a `Tuple` containing the `Function` to use for generating the output of a single trajectory, the (optional) `ProgressBar` object, and the (optional) `RemoteChannel` object.
309
328
- `progress_bar`: Whether to show the progress bar. Using non-`Val` types might lead to type instabilities.
329
+
- `store_measurement`: Whether to store the measurement results. Default is `Val(false)`.
310
330
- `kwargs`: The keyword arguments for the ODEProblem.
0 commit comments