We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 171b208 commit 52efe5cCopy full SHA for 52efe5c
test/fillmap.jl
@@ -35,5 +35,5 @@ using LinearMaps, LinearAlgebra, Test
35
@test α*LinearMap(μ, (M, N)) == LinearMap(α * μ, (M, N))
36
@test LinearMap(μ, (M, N))*α == LinearMap(μ * α, (M, N))
37
@test LinearMap(μ, (M, N))*LinearMap(μ, (N, M)) == LinearMap(μ^2*N, (M, M))
38
- @test Matrix(LinearMap(μ, (M, N))*LinearMap(μ, (N, M))) == fill(μ, (M, N))*fill(μ, (N, M))
+ @test Matrix(LinearMap(μ, (M, N))*LinearMap(μ, (N, M))) ≈ fill(μ, (M, N))*fill(μ, (N, M))
39
end
0 commit comments