Skip to content

Commit

Permalink
TL: corrected bug in MIN-SR-FLEX
Browse files Browse the repository at this point in the history
  • Loading branch information
tlunet committed Jun 21, 2024
1 parent 85a9b94 commit 81d78a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qmat/qdelta/min.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,6 @@ def getQDelta(self, k=None):
try:
self.QDelta_MIN_SR_S
except AttributeError:
self.QDelta_MIN_SR_S = super().getQDelta()
self.QDelta_MIN_SR_S = super().getQDelta().copy()
np.copyto(self.QDelta, self.QDelta_MIN_SR_S)
return self.QDelta

0 comments on commit 81d78a4

Please sign in to comment.