|
1 | | -@eval @inline function DiffEqBase.get_tmp_cache(integrator, alg::SSPRK22, |
2 | | - cache::OrdinaryDiffEqConstantCache) |
3 | | - nothing |
4 | | -end |
5 | | - |
6 | | -@eval @inline function DiffEqBase.get_tmp_cache(integrator, alg::SSPRK33, |
7 | | - cache::OrdinaryDiffEqConstantCache) |
8 | | - nothing |
9 | | -end |
10 | | - |
11 | | -@eval @inline function DiffEqBase.get_tmp_cache(integrator, alg::SSPRK53_2N1, |
12 | | - cache::OrdinaryDiffEqConstantCache) |
13 | | - nothing |
14 | | -end |
15 | | - |
16 | | -@eval @inline function DiffEqBase.get_tmp_cache(integrator, alg::SSPRK53_2N2, |
17 | | - cache::OrdinaryDiffEqConstantCache) |
18 | | - nothing |
19 | | -end |
20 | | - |
21 | | -@eval @inline function DiffEqBase.get_tmp_cache(integrator, alg::SSPRK432, |
22 | | - cache::OrdinaryDiffEqConstantCache) |
23 | | - nothing |
24 | | -end |
25 | | - |
26 | | -@eval @inline function DiffEqBase.get_tmp_cache(integrator, alg::SSPRK932, |
27 | | - cache::OrdinaryDiffEqConstantCache) |
28 | | - nothing |
29 | | -end |
30 | | - |
31 | | -@eval @inline function DiffEqBase.get_tmp_cache( |
32 | | - integrator, alg::OrdinaryDiffEqNewtonAdaptiveAlgorithm, |
33 | | - cache::OrdinaryDiffEqConstantCache) |
34 | | - nothing |
35 | | -end |
36 | | - |
37 | | -@eval @inline function DiffEqBase.get_tmp_cache( |
38 | | - integrator, alg::OrdinaryDiffEqRosenbrockAdaptiveAlgorithm, |
39 | | - cache::OrdinaryDiffEqConstantCache) |
40 | | - nothing |
41 | | -end |
42 | | - |
43 | | -@eval @inline function DiffEqBase.get_tmp_cache(integrator, alg::OrdinaryDiffEqAlgorithm, |
44 | | - cache::OrdinaryDiffEqConstantCache) |
45 | | - nothing |
46 | | -end |
47 | | - |
48 | 1 | @inline function DiffEqBase.get_tmp_cache(integrator, |
49 | 2 | alg::Union{SSPRK22, SSPRK33, SSPRK53_2N1, |
50 | 3 | SSPRK53_2N2, SSPRK43, SSPRK432, |
|
0 commit comments