Skip to content

Commit

Permalink
Fix syntax errors (line continuations).
Browse files Browse the repository at this point in the history
  • Loading branch information
ohearnk committed Mar 21, 2024
1 parent 38bbe8d commit b316ae3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/dnc/dnc_hfoperator.f90
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ end subroutine hfoperatordc
subroutine mpi_hfoperatordc(oneElecO)
use allmod
use quick_gaussian_class_module
use quick_cutoff_module, only: cshell_density_cutoff
use quick_cutoff_module, only: cshell_density_cutoff
use quick_cshell_eri_module, only: getCshellEriEnergy
use mpi
implicit double precision(a-h,o-z)
Expand Down
6 changes: 4 additions & 2 deletions src/mpi_setup.f90
Original file line number Diff line number Diff line change
Expand Up @@ -588,8 +588,10 @@ subroutine get_mpi_ssw
else

do i=1,mpisize-1
call MPI_RECV(quick_xcg_tmp%tmp_sswt,quick_dft_grid%init_ngpts,mpi_double_precision,i,i,MPI_COMM_WORLD,QUICK_MPI_STATUS,IERROR)
call MPI_RECV(quick_xcg_tmp%tmp_weight,quick_dft_grid%init_ngpts,mpi_double_precision,i,i,MPI_COMM_WORLD,QUICK_MPI_STATUS,IERROR)
call MPI_RECV(quick_xcg_tmp%tmp_sswt,quick_dft_grid%init_ngpts,mpi_double_precision,i,i,MPI_COMM_WORLD,&
QUICK_MPI_STATUS,IERROR)
call MPI_RECV(quick_xcg_tmp%tmp_weight,quick_dft_grid%init_ngpts,mpi_double_precision,i,i,MPI_COMM_WORLD,&
QUICK_MPI_STATUS,IERROR)

do j=1,quick_dft_grid%init_ngpts
quick_xcg_tmp%sswt(j)=quick_xcg_tmp%sswt(j)+quick_xcg_tmp%tmp_sswt(j)
Expand Down

0 comments on commit b316ae3

Please sign in to comment.