Skip to content

Commit

Permalink
fixed change to eispack and added needed flag to meson'
Browse files Browse the repository at this point in the history
  • Loading branch information
josh committed Sep 21, 2024
1 parent cc290a7 commit 9bf1bdf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@ ff_args += [
'-ffixed-line-length-80',
'-std=legacy',
'-fdefault-real-8',
'-fPIC'
'-fdefault-double-8',
'-fPIC',
'-O2'
]

numpy_nodepr_api = '-DNPY_NO_DEPRECATED_API=NPY_1_9_API_VERSION'
Expand Down
3 changes: 1 addition & 2 deletions src/eispack.f
Original file line number Diff line number Diff line change
Expand Up @@ -3949,8 +3949,7 @@ SUBROUTINE ELMHES(NM,N,LOW,IGH,A,INT)
A(J,M) = Y
120 CONTINUE
C .......... END INTERCHANGE ..........
130 IF (DABS(X) .LE. 1e-12_8) GO TO 180
! 130 IF (X .EQ. 0.0D0) GO TO 180
130 IF (X .EQ. 0.0D0) GO TO 180
MP1 = M + 1
C
DO 160 I = MP1, IGH
Expand Down

0 comments on commit 9bf1bdf

Please sign in to comment.