Skip to content

Commit

Permalink
fix in diag
Browse files Browse the repository at this point in the history
  • Loading branch information
PGelss committed Jun 2, 2024
1 parent 4278bd2 commit 1b450ee
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions scikit_tt/tensor_train.py
Original file line number Diff line number Diff line change
Expand Up @@ -1704,14 +1704,12 @@ def pinv(self,

return p_inv

def diag(self, t: 'TT', diag_list: List) -> 'TT':
def diag(self, diag_list: List) -> 'TT':
"""
Construction of diagonal MPO from MPS.
Parameters
----------
t: TT
MPS decomposition
diag_list: list
cores to diagonalize
Expand All @@ -1721,7 +1719,7 @@ def diag(self, t: 'TT', diag_list: List) -> 'TT':
MPO decomposition
"""

cores = t.cores.copy()
cores = self.cores.copy()

for i in diag_list:
r1, d, _, r2 = cores[i].shape
Expand Down

0 comments on commit 1b450ee

Please sign in to comment.