Skip to content

Commit

Permalink
Minor fix in hubbard_one_solver
Browse files Browse the repository at this point in the history
  • Loading branch information
j-otsuki committed Mar 13, 2018
1 parent afc5ae0 commit abecc1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/hubbard_one_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, beta, gf_struct, spin_orbit=False, verbose=True):
off_diag = True
mkind = get_mkind(off_diag, None)
# Conversion from TRIQS to Pomerol notation for operator indices
index_converter = {mkind(sn, bn) : ("atom", bi, "down" if sn == "dn" else "up")
index_converter = {mkind(sn, bn) : ("atom", bi, "down" if sn == "dn" else sn)
for sn, (bi, bn) in product(self.spin_names, enumerate(self.orb_names))}

self.__ed = PomerolED(index_converter, verbose)
Expand Down

0 comments on commit abecc1e

Please sign in to comment.