-
Notifications
You must be signed in to change notification settings - Fork 9
fix broadcast issue #55 #60
New issue
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
Conversation
Codecov ReportBase: 63.51% // Head: 63.40% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #60 +/- ##
==========================================
- Coverage 63.51% 63.40% -0.12%
==========================================
Files 4 4
Lines 233 235 +2
==========================================
+ Hits 148 149 +1
- Misses 85 86 +1
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Do you want to fix the ambiguity by defining an appropriate |
Oh, oops, misread somehow -- I see there are more ambiguities in |
Thanks for the fix! |
You're welcome. Thanks for all your hard work and nice packages! |
Would you mind making a new release soon so that @efaulhaber can use the fix in his work? |
Thanks a lot, @ranocha! using StrideArrays: PtrArray
using OrdinaryDiffEq
tspan = (0.0, 0.1)
u0_ode = [0.0]
ode = ODEProblem((du_ode, u_ode, semi, t) -> nothing, u0_ode, tspan)
sol = solve(ode, RDPK3SpFSAL49(thread=OrdinaryDiffEq.True()));
|
Fixes #55
I think this should be correct but please have a look, @chriselrod