Skip to content

Commit

Permalink
change product to hardcoded number fixes grimme-lab#1012 fixes grimme…
Browse files Browse the repository at this point in the history
  • Loading branch information
James H. Brown committed Jun 11, 2024
1 parent 67a6b3b commit c84874c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gfnff/gfnff_eg.f90
Original file line number Diff line number Diff line change
Expand Up @@ -4039,9 +4039,9 @@ function get_cf(rTrans,gTrans,vol,avgAlp) result(cf)
integer, parameter :: ewaldCutD(3) = 2
integer, parameter :: ewaldCutR(3) = 2
! real space lattice vectors
real(wp), intent(in) :: rTrans( 3, product(2*ewaldCutD+1))
real(wp), intent(in) :: rTrans( 3, 125)
! reciprocal space lattice vectors
real(wp), intent(in) :: gTrans(3, product(2*ewaldCutR+1)-1)
real(wp), intent(in) :: gTrans(3, 124)
! unit cell volume
real(wp), intent(in) :: vol
! average alphaEEQ value
Expand Down

0 comments on commit c84874c

Please sign in to comment.