@@ -6,29 +6,21 @@ Support for sparse arrays. Provides `AbstractSparseArray` and subtypes.
6
6
module SparseArrays
7
7
8
8
using Base: ReshapedArray, promote_op, setindex_shape_check, to_shape, tail,
9
- require_one_based_indexing
9
+ require_one_based_indexing, promote_eltype
10
10
using Base. Sort: Forward
11
11
using LinearAlgebra
12
- using LinearAlgebra: AdjOrTrans
12
+ using LinearAlgebra: AdjOrTrans, matprod
13
13
14
14
import Base: + , - , * , \ , / , & , | , xor, == , zero
15
15
import LinearAlgebra: mul!, ldiv!, rdiv!, cholesky, adjoint!, diag, eigen, dot,
16
16
issymmetric, istril, istriu, lu, tr, transpose!, tril!, triu!, isbanded,
17
- cond, diagm, factorize, ishermitian, norm, opnorm, lmul!, rmul!, tril, triu, matprod
17
+ cond, diagm, factorize, ishermitian, norm, opnorm, lmul!, rmul!, tril, triu
18
18
19
- import Base: acos, acosd, acot, acotd, acsch, asech, asin, asind, asinh,
20
- atan, atand, atanh, broadcast!, conj!, cos, cosc, cosd, cosh, cospi, cot,
21
- cotd, coth, count, csc, cscd, csch,
22
- exp10, exp2, findprev, findnext, floor, hash, argmin, inv,
23
- log10, log2, sec, secd, sech, show,
24
- sin, sinc, sind, sinh, sinpi, dropdims, sum, summary, tan,
25
- tand, tanh, trunc, abs, abs2,
26
- broadcast, ceil, complex, conj, convert, copy, copyto!, adjoint,
27
- exp, expm1, findall, findmax, findmin, float, getindex,
28
- vcat, hcat, hvcat, cat, imag, argmax, kron, kron!, length, log, log1p, max, min,
29
- maximum, minimum, one, promote_eltype, real, reshape, rot180,
30
- rotl90, rotr90, round, setindex!, similar, size, transpose,
31
- vec, permute!, map, map!, Array, diff, circshift!, circshift
19
+ import Base: adjoint, argmin, argmax, Array, broadcast, circshift!, complex, Complex,
20
+ conj, conj!, convert, copy, copy!, copyto!, count, diff, findall, findmax, findmin,
21
+ float, getindex, imag, inv, kron, kron!, length, map, maximum, minimum, permute!, real,
22
+ rot180, rotl90, rotr90, setindex!, show, similar, size, sum, transpose,
23
+ vcat, hcat, hvcat, cat, vec
32
24
33
25
using Random: default_rng, AbstractRNG, randsubseq, randsubseq!
34
26
0 commit comments