mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00

new file: d/dftd3-lib/dftd3-lib-0.9-GCC-9.3.0.eb new file: d/dftd3-lib/dftd3-lib-0.9_fix-extras-syntax.patch
23 lines
735 B
Diff
23 lines
735 B
Diff
Fix syntax of extras.f90
|
|
Author: Alex Domingo (Vrije Universiteit Brussel)
|
|
--- prg/extras.f90.orig 2020-04-07 15:53:37.579346000 +0200
|
|
+++ prg/extras.f90 2020-04-07 15:53:47.270025090 +0200
|
|
@@ -285,7 +285,7 @@
|
|
close(11)
|
|
|
|
write(*,*) 'checksum (Edisp) ',check
|
|
- if (abs(check-etot).gt.1.d-3)stop'something is weired in adisp'
|
|
+ if (abs(check-etot).gt.1.d-3) stop 'something is weired in adisp'
|
|
|
|
inquire(file='fragment',exist=ex)
|
|
if (.not.ex) return
|
|
@@ -1746,7 +1746,7 @@
|
|
close(11)
|
|
|
|
write(*,*) 'checksum (Edisp) ',check
|
|
- if (abs(check-etot).gt.1.d-3)stop'something is weired in adisp'
|
|
+ if (abs(check-etot).gt.1.d-3) stop 'something is weired in adisp'
|
|
|
|
deallocate(dist,li)
|
|
return
|