Skip to content

Commit 9d4edc1

Browse files
committed
Namespace
1 parent 5f4563d commit 9d4edc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/factorizations/truncation.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function MatrixAlgebraKit.truncate!(
6868
(U, S, Vᴴ)::NTuple{3,AbstractBlockSparseMatrix},
6969
strategy::BlockPermutedDiagonalTruncationStrategy,
7070
)
71-
I = MatrixAlgebraKit.findtruncated(diag(S), strategy)
71+
I = findtruncated(diag(S), strategy)
7272
return (U[:, I], S[I, I], Vᴴ[I, :])
7373
end
7474
for f in [:eig_trunc!, :eigh_trunc!]
@@ -78,7 +78,7 @@ for f in [:eig_trunc!, :eigh_trunc!]
7878
(D, V)::NTuple{2,AbstractBlockSparseMatrix},
7979
strategy::BlockPermutedDiagonalTruncationStrategy,
8080
)
81-
I = MatrixAlgebraKit.findtruncated(diag(D), strategy)
81+
I = findtruncated(diag(D), strategy)
8282
return (D[I, I], V[:, I])
8383
end
8484
end

0 commit comments

Comments
 (0)