C----------------------------------------------------------------------- C grasp0.inc C This file is INCLUDEd in the grasp0 and angul modules. C It is used to set dimensions. C C MXNC relativistic CSFs C MXNE exchange terms C MXNG radial grid points for /WAVE/ C MXNM angular coefficients C MXNO Lagrange multipliers C MXNP radial grid points C MXNW relativistic orbitals C MXNX dimension for EOL ( = 1 for AL,EAL,OL) C C Note: C C 1. angul only uses MXNC, MXNW C----------------------------------------------------------------------- INTEGER MXNC,MXNE,MXNG,MXNM,MXNO,MXNP,MXNW,MXNX PARAMETER (MXNC = 2500) PARAMETER (MXNE = 300) PARAMETER (MXNG = 300000) PARAMETER (MXNM = 1000000) PARAMETER (MXNO = 50) PARAMETER (MXNP = 5000) PARAMETER (MXNW = 150) PARAMETER (MXNX = 100) C-----------------------------------------------------------------------