Skip to content

Commit 93a8766

Browse files
authored
Loosen test bounds (#12)
* Loosen test bounds * Bump to v0.1.11
1 parent 1e07b3c commit 93a8766

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ITensorGaussianMPS"
22
uuid = "2be41995-7c9f-4653-b682-bfa4e7cebb93"
33
authors = ["Matthew Fishman <[email protected]> and contributors"]
4-
version = "0.1.10"
4+
version = "0.1.11"
55

66
[deps]
77
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"

test/linalg.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ end
3131
AU = A * U
3232
B = GMPS.make_subspace_real_if_possible(AU)
3333
# 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
34+
@test norm(((B * B' * A) .- A)) <= eps(Float64) * 10^2
35+
@test norm(((B * B' * AU) .- AU)) <= eps(Float64) * 10^2
3636
end

0 commit comments

Comments
 (0)