Skip to content
  • Gregor Michalicek's avatar
    Replaced POINTER with ALLOCATABLE for z_r and z_c in types.F90 · cf2c1e13
    Gregor Michalicek authored
    The temporary change to POINTER lead to the error:
    
    /usr/users/iff_th1/micha/FLEUR-git-repo/fleur/cdn/cdnval.F90(525): error #6547: The ARRAY argument of the ALLOCATED inquiry intrinsic function shall be an allocatable array.   [Z_R]
                 IF (.NOT.ALLOCATED(zMat%z_r)) THEN
    -------------------------------------^
    /usr/users/iff_th1/micha/FLEUR-git-repo/fleur/cdn/cdnval.F90(540): error #6547: The ARRAY argument of the ALLOCATED inquiry intrinsic function shall be an allocatable array.   [Z_C]
                 IF (.NOT.ALLOCATED(zMat%z_c)) THEN
    -------------------------------------^
    compilation aborted for /usr/users/iff_th1/micha/FLEUR-git-repo/fleur/cdn/cdnval.F90 (code 1)
    cf2c1e13