File: exx_debug.h

package info (click to toggle)
openmx 3.8.5%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 385,200 kB
  • sloc: ansic: 233,355; f90: 2,080; python: 876; makefile: 725; xml: 63; sh: 30; perl: 18
file content (30 lines) | stat: -rw-r--r-- 504 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*----------------------------------------------------------------------
  exx_debug.h
----------------------------------------------------------------------*/
#ifndef EXX_DEBUG_H_INCLUDED
#define EXX_DEBUG_H_INCLUDED

#include "exx.h"

void EXX_Debug_Copy_DM(
  int MaxN,
  double *****CDM,
  EXX_t  *exx,
  dcomplex ****exx_CDM,
  int symbrk
);


void EXX_Initial_DM(
  EXX_t *exx,
  dcomplex ****exx_CDM
);


void EXX_Debug_Check_DM(
  EXX_t *exx, 
  dcomplex ****exx_DM, 
  double *****DM
);

#endif