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
Copy file name to clipboardExpand all lines: src/systems/diffeqs/odesystem.jl
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -429,7 +429,7 @@ Options not otherwise specified are:
429
429
* `op = Operator` sets the recursion terminator for the walk done by `vars` to identify the variables that appear in `ts`. See the documentation for `vars` for more detail.
430
430
* `throw = true` if true, throw an error when generating a function for `ts` that reference variables that do not exist
431
431
* `drop_expr` is deprecated.
432
-
* `array_type`; only used if the output is an array (that is, `!isscalar(ts)`). If `:array`, then it will generate an array, if `:tuple` then it will generate a tuple.
432
+
* `array_type`; only used if the output is an array (that is, `!isscalar(ts)`). If it is `Vector`, then it will generate an array, if `Tuple` then it will generate a tuple.
433
433
"""
434
434
functionbuild_explicit_observed_function(sys, ts;
435
435
inputs =nothing,
@@ -444,7 +444,7 @@ function build_explicit_observed_function(sys, ts;
444
444
param_only =false,
445
445
op = Operator,
446
446
throw =true,
447
-
array_type =:array)
447
+
array_type =Vector)
448
448
if (isscalar =symbolic_type(ts) !==NotSymbolic())
449
449
ts = [ts]
450
450
end
@@ -590,7 +590,7 @@ function build_explicit_observed_function(sys, ts;
0 commit comments