@@ -30,7 +30,7 @@ for (op_type, A) in
3030 (InvertibleOperator, InvertibleOperator (rand (N,N) |> MatrixOperator)),
3131 (BatchedDiagonalOperator, DiagonalOperator (rand (N,K))),
3232 (AddedOperator, MatrixOperator (rand (N,N)) + MatrixOperator (rand (N,N))),
33- (ComposedOperator, MatrixOperator (rand (N,N)) * MatrixOperator (rand (N,N))), # ERROR
33+ (ComposedOperator, MatrixOperator (rand (N,N)) * MatrixOperator (rand (N,N))),
3434 (TensorProductOperator, TensorProductOperator (rand (n,n), rand (n,n))),
3535 (FunctionOperator, FunctionOperator ((u,p,t)-> M* u, op_inverse= (u,p,t)-> M\ u,
3636 T= Float64, isinplace= false , size= (N,N),
@@ -41,7 +41,7 @@ for (op_type, A) in
4141 # (TransposedOperator, TransposedOperator(rand(N,N) |> MatrixOperator) |> transpose),
4242
4343 (ScalarOperator, ScalarOperator (rand ())),
44- (AddedScalarOperator, ScalarOperator (rand ()) + ScalarOperator (rand ())), # ERROR
44+ (AddedScalarOperator, ScalarOperator (rand ()) + ScalarOperator (rand ())),
4545 (ComposedScalarOperator, ScalarOperator (rand ()) * ScalarOperator (rand ())),
4646 )
4747
0 commit comments