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.
2 parents 46d8a0e + 872dace commit 7613da5Copy full SHA for 7613da5
src/basis/type.jl
@@ -605,3 +605,8 @@ end
605
function Base.show(io::IO, ::MIME"text/plain", b::AbstractBasis)
606
Base.print(io, b)
607
end
608
+
609
+# SciMLBase interface - declare whether this is an in-place function
610
+# IMPL=true means the basis has implicit variables and supports in-place evaluation
611
+# IMPL=false means the basis is out-of-place only
612
+DiffEqBase.isinplace(::Basis{IMPL, CTRLS}, n) where {IMPL, CTRLS} = IMPL
0 commit comments