-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Docs] Fix entanglement entropy example #1369
Conversation
[test ITensorMPS] |
Run ITensors mps tests from comment trigger: failed ❌ |
1 similar comment
Run ITensors mps tests from comment trigger: failed ❌ |
[test ITensorMPS] [test ITensorGaussianMPS] |
[test ITensorTDVP] |
Run ITensorGaussianMPS tests from comment trigger: succeeded ✅ |
1 similar comment
Run ITensorGaussianMPS tests from comment trigger: succeeded ✅ |
Run ITensorTDVP tests from comment trigger: succeeded ✅ |
1 similar comment
Run ITensorTDVP tests from comment trigger: succeeded ✅ |
Run ITensors mps tests from comment trigger: succeeded ✅ |
1 similar comment
Run ITensors mps tests from comment trigger: succeeded ✅ |
Great |
Fix the docs for computing the entanglement entropy, which has been misleading users, see for example https://itensor.discourse.group/t/entanglement-entropy-in-tdvp-calculation/1594.
Also update some code styles in the docs, library code, and examples, like change
noprime!(a)
toa = noprime(a)
,orthogonalize!(psi)
topsi = orthogonalize(psi)
, etc.