Skip to content

Commit

Permalink
Fix line truncation
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrack committed Apr 26, 2021
1 parent aa88a19 commit ec1cf92
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/dft_plus_u.F
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,9 @@ SUBROUTINE lowdin(qs_env, matrix_h, matrix_w, should_output, output_unit, &
IF (ASSOCIATED(sm_w)) THEN

CPWARN("This is an experimental version of the forces calculation for the DFT+U method LOWDIN")
IF (virial%pv_calculate) CPABORT("The stress tensor is not implemented for the DFT+U method LOWDIN")
IF (virial%pv_calculate) THEN
CPABORT("The stress tensor is not implemented for the DFT+U method LOWDIN")
END IF

END IF ! W matrix update requested

Expand Down

0 comments on commit ec1cf92

Please sign in to comment.