Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/scimlfunctions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4095,15 +4095,15 @@ function BVPFunction{iip, specialize, twopoint}(f, bc;
end

if jac_prototype !== nothing && colorvec === nothing &&
ArrayInterfaceCore.fast_matrix_colors(jac_prototype)
_colorvec = ArrayInterfaceCore.matrix_colors(jac_prototype)
ArrayInterface.fast_matrix_colors(jac_prototype)
_colorvec = ArrayInterface.matrix_colors(jac_prototype)
else
_colorvec = colorvec
end

if bcjac_prototype !== nothing && bccolorvec === nothing &&
ArrayInterfaceCore.fast_matrix_colors(bcjac_prototype)
_bccolorvec = ArrayInterfaceCore.matrix_colors(bcjac_prototype)
ArrayInterface.fast_matrix_colors(bcjac_prototype)
_bccolorvec = ArrayInterface.matrix_colors(bcjac_prototype)
else
_bccolorvec = bccolorvec
end
Expand Down Expand Up @@ -4268,15 +4268,15 @@ function DynamicalBVPFunction{iip, specialize, twopoint}(f, bc;
end

if jac_prototype !== nothing && colorvec === nothing &&
ArrayInterfaceCore.fast_matrix_colors(jac_prototype)
_colorvec = ArrayInterfaceCore.matrix_colors(jac_prototype)
ArrayInterface.fast_matrix_colors(jac_prototype)
_colorvec = ArrayInterface.matrix_colors(jac_prototype)
else
_colorvec = colorvec
end

if bcjac_prototype !== nothing && bccolorvec === nothing &&
ArrayInterfaceCore.fast_matrix_colors(bcjac_prototype)
_bccolorvec = ArrayInterfaceCore.matrix_colors(bcjac_prototype)
ArrayInterface.fast_matrix_colors(bcjac_prototype)
_bccolorvec = ArrayInterface.matrix_colors(bcjac_prototype)
else
_bccolorvec = bccolorvec
end
Expand Down
Loading