[WIP] Local truncation for two layers of InfinitePEPO #311
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR introduces the most naive algorithm to truncate the virtual space of the product of two layers of InfinitePEPOs. It is a polished version of @sanderdemeyer's work in ClusterExpansions.jl. At least it can serve as initialization for other advanced approximation methods.
The algorithm minimizes the local cost function at each virtual bond, which is the norm of
The projectors are found following steps described in Appendix A, 1905.02351 (Boundary Tensor Renormalization Group). To handle fermions, the virtual arrows are first flipped to leftwards/downwards direction with
standardize_virtual_spaces.Similar to @pbrehmer's PR #257, the function doing the truncation overloads
MPSKit.approximate, and dispatches on the algorithm structLocalApprox <: ApproximateAlgorithm.An immediate generalization is approximate the product of an InfinitePEPO and an InfinitePEPS, but currently I don't have concrete test cases.