@@ -240,12 +240,12 @@ end
240
240
@test (P' )' * x == P * x # test adjoint of adjoint
241
241
@test size (P' ) == AbstractFFTs. output_size (P) # test size of adjoint
242
242
@test dot (y, P * x) ≈ dot (P' * y, x) # test validity of adjoint
243
- @test_broken dot (y, P \ x) ≈ dot (P' \ y, x)
243
+ @test dot (y, P \ x) ≈ dot (P' \ y, x)
244
244
Pinv = plan_ifft (y)
245
245
@test (Pinv' )' * y == Pinv * y
246
246
@test size (Pinv' ) == AbstractFFTs. output_size (Pinv)
247
247
@test dot (x, Pinv * y) ≈ dot (Pinv' * x, y)
248
- @test_broken dot (x, Pinv \ y) ≈ dot (Pinv' \ x, y)
248
+ @test dot (x, Pinv \ y) ≈ dot (Pinv' \ x, y)
249
249
end
250
250
end
251
251
end
@@ -260,12 +260,12 @@ end
260
260
@test (P' )' * x == P * x
261
261
@test size (P' ) == AbstractFFTs. output_size (P)
262
262
@test dot (y_real, real .(P * x)) + dot (y_imag, imag .(P * x)) ≈ dot (P' * y, x)
263
- @test_broken dot (y_real, real .(P \ x)) + dot (y_imag, imag .(P \ x)) ≈ dot (P' * y, x)
263
+ @test dot (y_real, real .(P' \ x)) + dot (y_imag, imag .(P' \ x)) ≈ dot (P \ y, x)
264
264
Pinv = plan_irfft (y, size (x)[first (dims)], dims)
265
265
@test (Pinv' )' * y == Pinv * y
266
266
@test size (Pinv' ) == AbstractFFTs. output_size (Pinv)
267
267
@test dot (x, Pinv * y) ≈ dot (y_real, real .(Pinv' * x)) + dot (y_imag, imag .(Pinv' * x))
268
- @test_broken dot (x, Pinv \ y) ≈ dot (y_real, real .(Pinv' \ x)) + dot (y_imag, imag .(Pinv' \ x))
268
+ @test dot (x, Pinv' \ y) ≈ dot (y_real, real .(Pinv \ x)) + dot (y_imag, imag .(Pinv \ x))
269
269
end
270
270
end
271
271
end
0 commit comments