Skip to content

Commit aa61028

Browse files
Merge pull request #875 from vyudu/main
switch ArrayInterfaceCore to ArrayInterface in some places
2 parents f939a5f + 4e19616 commit aa61028

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/scimlfunctions.jl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4095,15 +4095,15 @@ function BVPFunction{iip, specialize, twopoint}(f, bc;
40954095
end
40964096

40974097
if jac_prototype !== nothing && colorvec === nothing &&
4098-
ArrayInterfaceCore.fast_matrix_colors(jac_prototype)
4099-
_colorvec = ArrayInterfaceCore.matrix_colors(jac_prototype)
4098+
ArrayInterface.fast_matrix_colors(jac_prototype)
4099+
_colorvec = ArrayInterface.matrix_colors(jac_prototype)
41004100
else
41014101
_colorvec = colorvec
41024102
end
41034103

41044104
if bcjac_prototype !== nothing && bccolorvec === nothing &&
4105-
ArrayInterfaceCore.fast_matrix_colors(bcjac_prototype)
4106-
_bccolorvec = ArrayInterfaceCore.matrix_colors(bcjac_prototype)
4105+
ArrayInterface.fast_matrix_colors(bcjac_prototype)
4106+
_bccolorvec = ArrayInterface.matrix_colors(bcjac_prototype)
41074107
else
41084108
_bccolorvec = bccolorvec
41094109
end
@@ -4268,15 +4268,15 @@ function DynamicalBVPFunction{iip, specialize, twopoint}(f, bc;
42684268
end
42694269

42704270
if jac_prototype !== nothing && colorvec === nothing &&
4271-
ArrayInterfaceCore.fast_matrix_colors(jac_prototype)
4272-
_colorvec = ArrayInterfaceCore.matrix_colors(jac_prototype)
4271+
ArrayInterface.fast_matrix_colors(jac_prototype)
4272+
_colorvec = ArrayInterface.matrix_colors(jac_prototype)
42734273
else
42744274
_colorvec = colorvec
42754275
end
42764276

42774277
if bcjac_prototype !== nothing && bccolorvec === nothing &&
4278-
ArrayInterfaceCore.fast_matrix_colors(bcjac_prototype)
4279-
_bccolorvec = ArrayInterfaceCore.matrix_colors(bcjac_prototype)
4278+
ArrayInterface.fast_matrix_colors(bcjac_prototype)
4279+
_bccolorvec = ArrayInterface.matrix_colors(bcjac_prototype)
42804280
else
42814281
_bccolorvec = bccolorvec
42824282
end

0 commit comments

Comments
 (0)