Skip to content

Commit ae727fe

Browse files
authored
Explicitly import Matrix and Vector in CHOLMOD (#601)
These were being extended in the module, but weren't explicitly imported from `Base`.
1 parent ce852af commit ae727fe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/solvers/cholmod.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
module CHOLMOD
1212

1313
import Base: (*), convert, copy, eltype, getindex, getproperty, show, size,
14-
IndexStyle, IndexLinear, IndexCartesian, adjoint, axes
14+
IndexStyle, IndexLinear, IndexCartesian, adjoint, axes,
15+
Matrix, Vector
1516
using Base: require_one_based_indexing
1617

1718
using LinearAlgebra

0 commit comments

Comments
 (0)