We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bdb3c0 commit 018e7f9Copy full SHA for 018e7f9
test/test_unit.jl
@@ -2760,8 +2760,8 @@ end
2760
function rhs_hyperbolic_parabolic!(du_ode, u_ode,
2761
semi::SemidiscretizationHyperbolicParabolic, t)
2762
du_para = similar(du_ode) # This obviously allocates, but fine for this test
2763
- rhs!(du_ode, u_ode, semi, t)
2764
- rhs_parabolic!(du_para, u_ode, semi, t)
+ Trixi.rhs!(du_ode, u_ode, semi, t)
+ Trixi.rhs_parabolic!(du_para, u_ode, semi, t)
2765
2766
Trixi.@threaded for i in eachindex(du_ode)
2767
du_ode[i] = du_ode[i] + du_para[i]
0 commit comments