You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lines 53 and 78 of h0psi1_p_utils.mod.F90 contain the non-standard continuation character \. The standard continuation character & should be used instead (as is already used in that file on 11 occasions).
Non-standard continuation characters are supported on some compilers, but in non-uniform contexts. An experiment with GNU vs. Intel compilers shows that \ is supported in character context by one of them but not the other. It is best not to rely on such extensions and, in this case, it looks pointless and accidental rather than intentional.
The text was updated successfully, but these errors were encountered:
@ThemosTsikas
Thanks for reporting this, however, please be aware the code in this repository will likley not be patched anymore.
The community will move to another github project / repository, ETA yet unknown, destination: unknown atm.
(I am aware that the code is in state which could be improved...)
Lines 53 and 78 of h0psi1_p_utils.mod.F90 contain the non-standard continuation character
\
. The standard continuation character&
should be used instead (as is already used in that file on 11 occasions).Non-standard continuation characters are supported on some compilers, but in non-uniform contexts. An experiment with GNU vs. Intel compilers shows that
\
is supported in character context by one of them but not the other. It is best not to rely on such extensions and, in this case, it looks pointless and accidental rather than intentional.The text was updated successfully, but these errors were encountered: