We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The internal function _solve_ensemble lets you choose how many trajectories to use:
_solve_ensemble
ReachabilityAnalysis.jl/src/Initialization/init_DifferentialEquations.jl
Line 6 in cf72713
This value is then used further below.
Line 29 in cf72713
But _solve_ensemble is called from solve and the argument is not passed on as expected:
solve
ReachabilityAnalysis.jl/src/Continuous/solve.jl
Line 68 in cf72713
I suggest to not pass trajectories as keyword argument but rather take it from kwargs as with the other options here:
trajectories
kwargs
Lines 25 to 28 in cf72713
The text was updated successfully, but these errors were encountered:
schillic
Successfully merging a pull request may close this issue.
The internal function
_solve_ensemble
lets you choose how many trajectories to use:ReachabilityAnalysis.jl/src/Initialization/init_DifferentialEquations.jl
Line 6 in cf72713
This value is then used further below.
ReachabilityAnalysis.jl/src/Initialization/init_DifferentialEquations.jl
Line 29 in cf72713
But
_solve_ensemble
is called fromsolve
and the argument is not passed on as expected:ReachabilityAnalysis.jl/src/Continuous/solve.jl
Line 68 in cf72713
I suggest to not pass
trajectories
as keyword argument but rather take it fromkwargs
as with the other options here:ReachabilityAnalysis.jl/src/Initialization/init_DifferentialEquations.jl
Lines 25 to 28 in cf72713
The text was updated successfully, but these errors were encountered: