Skip to content

Commit 58f7ae0

Browse files
committed
Another namespace fix
1 parent 5953909 commit 58f7ae0

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

test/eig.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using Test
33
using TestExtras
44
using StableRNGs
55
using LinearAlgebra: Diagonal
6-
using MatrixAlgebraKit: diagview
6+
using MatrixAlgebraKit: TruncatedAlgorithm, diagview
77

88
@testset "eig_full! for T = $T" for T in (Float32, Float64, ComplexF32, ComplexF64)
99
rng = StableRNG(123)

test/eigh.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using Test
33
using TestExtras
44
using StableRNGs
55
using LinearAlgebra: LinearAlgebra, Diagonal, I
6-
using MatrixAlgebraKit: diagview
6+
using MatrixAlgebraKit: TruncatedAlgorithm, diagview
77

88
@testset "eigh_full! for T = $T" for T in (Float32, Float64, ComplexF32, ComplexF64)
99
rng = StableRNG(123)

test/svd.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using Test
33
using TestExtras
44
using StableRNGs
55
using LinearAlgebra: LinearAlgebra, Diagonal, I, isposdef
6-
using MatrixAlgebraKit: TruncationKeepAbove, diagview
6+
using MatrixAlgebraKit: TruncatedAlgorithm, TruncationKeepAbove, diagview
77

88
@testset "svd_compact! for T = $T" for T in (Float32, Float64, ComplexF32, ComplexF64)
99
rng = StableRNG(123)

0 commit comments

Comments
 (0)