-
Notifications
You must be signed in to change notification settings - Fork 25
Description
Currently, PEPSKit CTMRG assumes each site in the unit cell is different. For a 2x2 unit cell, it imposes a AB//CD pattern and computes 4 different environments. However, unit cell with repeated sites such as AB//BA are very common.
It is possible to hard code a bipartite IPEPS, however one can be slightly more ambitious and allow for any self-consistent unit cell pattern, such as ABC//BCA//CAB. The implementation can be made pretty simple. One needs to store unique site tensors in a vector and define getitem function to go back and forth between the unit cell coordinates and the internal 1D storage. The same accessors are used for the unique environment tensors.
As the CTMRG complexity is linear in the number of environments, making use of repetitions in the unit cell is a low hanging fruit. In my experience, it also improves stability and convergence.