|
1 | 1 | @fallback_iip_specialize function SciMLBase.DDEFunction{iip, spec}( |
2 | 2 | sys::System; u0 = nothing, p = nothing, eval_expression = false, |
3 | 3 | eval_module = @__MODULE__, expression = Val{false}, checkbounds = false, |
4 | | - initialization_data = nothing, cse = true, check_compatibility = true, |
| 4 | + initialization_data = nothing, check_compatibility = true, |
5 | 5 | sparse = false, simplify = false, analytic = nothing, kwargs... |
6 | 6 | ) where {iip, spec} |
7 | 7 | check_complete(sys, DDEFunction) |
8 | 8 | check_compatibility && check_compatible_system(DDEFunction, sys) |
9 | 9 |
|
10 | 10 | f = generate_rhs( |
11 | 11 | sys; expression, wrap_gfw = Val{true}, |
12 | | - eval_expression, eval_module, checkbounds = checkbounds, cse, |
| 12 | + eval_expression, eval_module, checkbounds = checkbounds, |
13 | 13 | kwargs... |
14 | 14 | ) |
15 | 15 |
|
|
28 | 28 | _M = concrete_massmatrix(M; sparse, u0) |
29 | 29 |
|
30 | 30 | observedfun = ObservedFunctionCache( |
31 | | - sys; expression, eval_expression, eval_module, checkbounds, cse |
| 31 | + sys; expression, eval_expression, eval_module, checkbounds |
32 | 32 | ) |
33 | 33 |
|
34 | 34 | kwargs = (; |
|
45 | 45 |
|
46 | 46 | @fallback_iip_specialize function SciMLBase.DDEProblem{iip, spec}( |
47 | 47 | sys::System, op, tspan; |
48 | | - callback = nothing, check_length = true, cse = true, checkbounds = false, |
| 48 | + callback = nothing, check_length = true, checkbounds = false, |
49 | 49 | eval_expression = false, eval_module = @__MODULE__, check_compatibility = true, |
50 | 50 | u0_constructor = identity, expression = Val{false}, kwargs... |
51 | 51 | ) where {iip, spec} |
|
56 | 56 | f, u0, |
57 | 57 | p = process_SciMLProblem( |
58 | 58 | DDEFunction{_iip, spec}, sys, op; |
59 | | - t = tspan !== nothing ? tspan[1] : tspan, check_length, cse, checkbounds, |
| 59 | + t = tspan !== nothing ? tspan[1] : tspan, check_length, checkbounds, |
60 | 60 | eval_expression, eval_module, check_compatibility, symbolic_u0 = true, |
61 | 61 | expression, u0_constructor, kwargs... |
62 | 62 | ) |
63 | 63 |
|
64 | 64 | h = generate_history( |
65 | | - sys, u0; expression, wrap_gfw = Val{true}, cse, eval_expression, eval_module, |
| 65 | + sys, u0; expression, wrap_gfw = Val{true}, eval_expression, eval_module, |
66 | 66 | checkbounds |
67 | 67 | ) |
68 | 68 |
|
|
0 commit comments