Skip to content

Commit

Permalink
Fix docstring to account for tuples
Browse files Browse the repository at this point in the history
  • Loading branch information
BenChung committed Nov 15, 2024
1 parent 7b73213 commit 14996d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/systems/diffeqs/odesystem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ Generates a function that computes the observed value(s) `ts` in the system `sys
- `checkbounds = true` checks bounds if true when destructuring parameters
- `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.
- `throw = true` if true, throw an error when generating a function for `ts` that reference variables that do not exist.
- `mkarray`; only used if the output is an array (that is, `!isscalar(ts)`). Called as `mkarray(ts, output_type)` where `ts` are the expressions to put in
- `mkarray`; only used if the output is an array (that is, `!isscalar(ts)` and `ts` is not a tuple, in which case the result will always be a tuple). Called as `mkarray(ts, output_type)` where `ts` are the expressions to put in
the array and `output_type` is the argument of the same name passed to build_explicit_observed_function.
## Returns
Expand Down

0 comments on commit 14996d7

Please sign in to comment.