@@ -115,21 +115,17 @@ function MatrixAlgebraKit.check_input(
115
115
:: typeof (qr_compact!), A:: AbstractBlockSparseMatrix , QR
116
116
)
117
117
Q, R = QR
118
- @assert isa (Q, AbstractBlockSparseMatrix) &&
119
- isa (R, AbstractBlockSparseMatrix)
118
+ @assert isa (Q, AbstractBlockSparseMatrix) && isa (R, AbstractBlockSparseMatrix)
120
119
@assert eltype (A) == eltype (Q) == eltype (R)
121
120
@assert axes (A, 1 ) == axes (Q, 1 ) && axes (A, 2 ) == axes (R, 2 )
122
121
@assert axes (Q, 2 ) == axes (R, 1 )
123
122
124
123
return nothing
125
124
end
126
125
127
- function MatrixAlgebraKit. check_input (
128
- :: typeof (qr_full!), A:: AbstractBlockSparseMatrix , QR
129
- )
126
+ function MatrixAlgebraKit. check_input (:: typeof (qr_full!), A:: AbstractBlockSparseMatrix , QR)
130
127
Q, R = QR
131
- @assert isa (Q, AbstractBlockSparseMatrix) &&
132
- isa (R, AbstractBlockSparseMatrix)
128
+ @assert isa (Q, AbstractBlockSparseMatrix) && isa (R, AbstractBlockSparseMatrix)
133
129
@assert eltype (A) == eltype (Q) == eltype (R)
134
130
@assert axes (A, 1 ) == axes (Q, 1 ) && axes (A, 2 ) == axes (R, 2 )
135
131
@assert axes (Q, 2 ) == axes (R, 1 )
0 commit comments