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 40037b2 commit 6145ec4Copy full SHA for 6145ec4
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