Files
lammps/tools/phonon/zheevd.h
2023-05-01 20:14:52 -04:00

17 lines
452 B
C

#ifndef ZHEEVD_H
#define ZHEEVD_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct { double r, i; } doublecomplex;
/* Subroutine */ int zheevd_(char *jobz, char *uplo, int *n,
doublecomplex *a, int *lda, double *w, doublecomplex *work,
int *lwork, double *rwork, int *lrwork, int *iwork,
int *liwork, int *info);
#ifdef __cplusplus
}
#endif
#endif