From 4e196168a50fbe88c2d95fbea4b9ba1ab418b0e3 Mon Sep 17 00:00:00 2001 From: vyudu Date: Fri, 22 Nov 2024 13:51:36 -0500 Subject: [PATCH] change to ArrayInterface --- src/scimlfunctions.jl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/scimlfunctions.jl b/src/scimlfunctions.jl index aeddf301b..4d0442ecd 100644 --- a/src/scimlfunctions.jl +++ b/src/scimlfunctions.jl @@ -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 @@ -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