Skip to content

Commit

Permalink
Reduce line length
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrack committed Nov 26, 2019
1 parent 1a46983 commit e40bddf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cp_control_utils.F
Original file line number Diff line number Diff line change
Expand Up @@ -543,8 +543,9 @@ SUBROUTINE read_mgrid_section(qs_control, dft_section)
CALL section_vals_val_get(mgrid_section, "MULTIGRID_CUTOFF", r_vals=cutofflist)
IF (ASSOCIATED(cutofflist)) THEN
IF (SIZE(cutofflist, 1) /= ngrid_level) &
IF (SIZE(cutofflist, 1) /= ngrid_level) THEN
CPABORT("Number of multi-grids (NGRIDS) requested and number of cutoff values do not match")
END IF
DO igrid_level = 1, ngrid_level
qs_control%e_cutoff(igrid_level) = cutofflist(igrid_level)
END DO
Expand Down

0 comments on commit e40bddf

Please sign in to comment.