Skip to content

v1.1.0

Compare
Choose a tag to compare
@philopon philopon released this 30 May 15:41
· 70 commits to master since this release

new features

descriptor versioning (#38)

Users can use version option in Calculator.__init__ and Calculator.register methods to specify descriptors set.
Even if preset is changed by update, Users can use descriptors set in the specific version.

calc = Calculator(descriptors, version="1.0.0").

broken changes

  • SM1 uses trace instead of sum of eigen values: it should give more accurate results. (82b9643)
  • use np.linalg.eigh instead of np.linalg.eig: it should give more accurate results. (76f6099)

new descriptors

deprecated descriptors

These descriptors are removed from preset.
Users can use when register explicitly.

bug fix

  • fix __str__ method of Result (b180d93)
  • fix space leak in parallel mode of Calculator.map (#41, aedc565)