Skip to content

Commit

Permalink
Small bugfix in the reporting of the energy values
Browse files Browse the repository at this point in the history
  • Loading branch information
ifilot committed May 14, 2024
1 parent 4835f0c commit d257466
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: "pyqint"
version: "0.17.0"
version: "0.17.1"

source:
path: .
Expand Down
2 changes: 1 addition & 1 deletion pyqint/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.17.0"
__version__ = "0.17.1"

2 changes: 1 addition & 1 deletion pyqint/abobuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def build_abo(self, outfile, isovalue=0.01, alpha=0.8, sz=5, npts=100):
# write frame_idx
f.write((i+1).to_bytes(2, byteorder='little'))

descriptor = "MO %02i (E = %.1f Ht)" % (i+1, self.orbe_canonical[i])
descriptor = "MO %02i (E = %.5f Ht)" % (i+1, self.orbe_canonical[i])

f.write(len(descriptor).to_bytes(2, byteorder='little'))
f.write(bytearray(descriptor, encoding='utf8'))
Expand Down

0 comments on commit d257466

Please sign in to comment.