Skip to content

Commit 92b7060

Browse files
committed
fix imports
1 parent 792fbd3 commit 92b7060

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

src/factorizations/truncation.jl

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
using MatrixAlgebraKit: TruncationStrategy, diagview
1+
using MatrixAlgebraKit: TruncationStrategy, diagview, svd_trunc!
22

33
"""
4-
BlockPermutedDiagonalTruncationStrategy(strategy::MatrixAlgebraKit.TruncationStrategy)
4+
BlockPermutedDiagonalTruncationStrategy(strategy::TruncationStrategy)
55
6-
A wrapper for `MatrixAlgebraKit.TruncationStrategy` that implements the wrapped strategy on
7-
a block-by-block basis, which is possible if the input matrix is a block-diagonal matrix or
8-
a block permuted block-diagonal matrix.
6+
A wrapper for `TruncationStrategy` that implements the wrapped strategy on a block-by-block
7+
basis, which is possible if the input matrix is a block-diagonal matrix or a block permuted
8+
block-diagonal matrix.
99
"""
10-
struct BlockPermutedDiagonalTruncationStrategy{T<:MatrixAlgebraKit.TruncationStrategy} <:
11-
MatrixAlgebraKit.TruncationStrategy
10+
struct BlockPermutedDiagonalTruncationStrategy{T<:TruncationStrategy} <: TruncationStrategy
1211
strategy::T
1312
end
1413

0 commit comments

Comments
 (0)