Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HKaras committed Jun 29, 2023
1 parent 44c7ced commit 1e8534f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autodeer/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def sop(spins, comps):
r = np.hstack((m-1,m))
c = np.hstack((m,m-1))
dia = -0.5*1j * np.sqrt(m*m[::-1])
val = np.hstack((dia,dia))
val = np.hstack((dia,-dia))
elif sop_type == 'z':
m = np.arange(1, n+ 1)
r = m - 1
Expand Down

0 comments on commit 1e8534f

Please sign in to comment.