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 d6fdf9d commit f4add67Copy full SHA for f4add67
src/scimlfunctions.jl
@@ -2173,7 +2173,7 @@ For more details on this argument, see the ODEFunction documentation.
2173
The fields of the ControlFunction type directly match the names of the inputs.
2174
"""
2175
struct ControlFunction{iip, specialize, F, TMM, Ta, Tt, TJ, CTJ, JVP, VJP,
2176
- JP, CJP, SP, TW, TWt, WP, TPJ, O, TCV, CTCV,
+ JP, CJP, SP, TW, TWt, WP, TPJ, O, TCV,
2177
SYS, ID} <: AbstractControlFunction{iip}
2178
f::F
2179
mass_matrix::TMM
@@ -2595,6 +2595,7 @@ end
2595
(f::ImplicitDiscreteFunction)(args...) = f.f(args...)
2596
(f::DAEFunction)(args...) = f.f(args...)
2597
(f::DDEFunction)(args...) = f.f(args...)
2598
+(f::ControlFunction)(args...) = f.f(args...)
2599
2600
function (f::DynamicalDDEFunction)(u, h, p, t)
2601
ArrayPartition(f.f1(u.x[1], u.x[2], h, p, t), f.f2(u.x[1], u.x[2], h, p, t))
0 commit comments