Added corexp1.f file

The file corexp1.f was updated to be compatible with Python
bindings.
This commit is contained in:
Sylvain Tricot 2022-02-09 13:11:17 +01:00
parent f262f96004
commit 0b889681d1
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
C
C======================================================================
C
SUBROUTINE COREXP_SAVM1(JE,IGR,NGR,NLM,ITYPE,IGS,TAU)
C
C This subroutine allows a recursive use of COREXP_SAVM
C
C H.-F. Zhao : 2007
C
USE DIM_MOD
C
INTEGER NLM(NGR_M),ITYPE(NGR_M),IGS(NGR_M)
COMPLEX*16 TAU(LINMAX,LINFMAX,NATCLU_M)
C
CALL COREXP_SAVM(JE,IGR,NGR,NLM,ITYPE,IGS,TAU)
C
RETURN
C
END