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 1e07b3c commit 93a8766Copy full SHA for 93a8766
Project.toml
@@ -1,7 +1,7 @@
1
name = "ITensorGaussianMPS"
2
uuid = "2be41995-7c9f-4653-b682-bfa4e7cebb93"
3
authors = ["Matthew Fishman <[email protected]> and contributors"]
4
-version = "0.1.10"
+version = "0.1.11"
5
6
[deps]
7
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
test/linalg.jl
@@ -31,6 +31,6 @@ end
31
AU = A * U
32
B = GMPS.make_subspace_real_if_possible(AU)
33
# verify that same subspace is spanned by real eigenvectors B as original eigenvectors A or AU
34
- @test norm(((B * B' * A) .- A)) <= eps(Float64) * 10
35
- @test norm(((B * B' * AU) .- AU)) <= eps(Float64) * 10
+ @test norm(((B * B' * A) .- A)) <= eps(Float64) * 10^2
+ @test norm(((B * B' * AU) .- AU)) <= eps(Float64) * 10^2
36
end
0 commit comments