1 /*---------------------------------------------------------------------- 2 exx_debug.h 3 ----------------------------------------------------------------------*/ 4 #ifndef EXX_DEBUG_H_INCLUDED 5 #define EXX_DEBUG_H_INCLUDED 6 7 #include "exx.h" 8 9 void EXX_Debug_Copy_DM( 10 int MaxN, 11 double *****CDM, 12 EXX_t *exx, 13 dcomplex ****exx_CDM, 14 int symbrk 15 ); 16 17 18 void EXX_Initial_DM( 19 EXX_t *exx, 20 dcomplex ****exx_CDM 21 ); 22 23 24 void EXX_Debug_Check_DM( 25 EXX_t *exx, 26 dcomplex ****exx_DM, 27 double *****DM 28 ); 29 30 #endif 31