Skip to content

Commit

Permalink
Increase threshold for lowest freqs
Browse files Browse the repository at this point in the history
Signed-off-by: Igor S. Gerasimov <[email protected]>
  • Loading branch information
foxtran committed Feb 27, 2025
1 parent a6eb672 commit 63074f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/detrotra.f90
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ subroutine detrotra4(linear,mol,h,eig)

nn = 0
do ii=1, n3
if(eig(ii).gt.0.05) cycle ! only lowest checked
if(eig(ii).gt.5.0_wp) cycle ! only lowest checked

kk=0
do j=1,mol%n
Expand Down

0 comments on commit 63074f0

Please sign in to comment.