Skip to content

Commit

Permalink
Loosen test bounds (#12)
Browse files Browse the repository at this point in the history
* Loosen test bounds

* Bump to v0.1.11
  • Loading branch information
mtfishman authored Oct 6, 2024
1 parent 1e07b3c commit 93a8766
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ITensorGaussianMPS"
uuid = "2be41995-7c9f-4653-b682-bfa4e7cebb93"
authors = ["Matthew Fishman <[email protected]> and contributors"]
version = "0.1.10"
version = "0.1.11"

[deps]
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
Expand Down
4 changes: 2 additions & 2 deletions test/linalg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ end
AU = A * U
B = GMPS.make_subspace_real_if_possible(AU)
# verify that same subspace is spanned by real eigenvectors B as original eigenvectors A or AU
@test norm(((B * B' * A) .- A)) <= eps(Float64) * 10
@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
end

2 comments on commit 93a8766

@mtfishman
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/116712

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.11 -m "<description of version>" 93a87667e338c7050665738252191c031b5c7257
git push origin v0.1.11

Please sign in to comment.