Skip to content

Commit

Permalink
self review
Browse files Browse the repository at this point in the history
  • Loading branch information
t-young31 committed Nov 24, 2024
1 parent 640e135 commit 4e6a7c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
7 changes: 1 addition & 6 deletions autode/hessians.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
Union,
TYPE_CHECKING,
)

from autode.wrappers.keywords import Functional, GradientKeywords
from autode.log import logger
from autode.config import Config
Expand Down Expand Up @@ -171,11 +170,7 @@ def _tr_vecs(
t5 += np.cross(e_y, r).tolist()
t6 += np.cross(e_z, r).tolist()

t4 = np.array(t4)
t5 = np.array(t5)
t6 = np.array(t6)

return t1, t2, t3, t4, t5, t6
return t1, t2, t3, np.array(t4), np.array(t5), np.array(t6)

@cached_property
def _proj_matrix(self) -> np.ndarray:
Expand Down
1 change: 1 addition & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Functionality improvements
Bug Fixes
*********
- Fixes coordinate extraction in some G16 output files
- Fixes the projected frequency calculation to make it rotation invariant by not discarding non-zeroed modes from the projected Hessian


1.4.4
Expand Down

0 comments on commit 4e6a7c1

Please sign in to comment.