hpgv - multiple declarations

Function hpgv

Computes all eigenvalues and eigenvectors of a generalized Hermitian-definite generalized eigenproblem, Ax= lambda Bx, ABx= lambda x, or BAx= lambda x, where A and B are in packed storage.

void hpgv (
  int itype,
  char jobz,
  char uplo,
  int n,
  std.complex.Complex!(float)* ap,
  std.complex.Complex!(float)* bp,
  float* w,
  std.complex.Complex!(float)* z,
  int ldz,
  std.complex.Complex!(float)* work,
  float* rwork,
  ref int info
);

Function hpgv

void hpgv (
  int itype,
  char jobz,
  char uplo,
  int n,
  std.complex.Complex!(double)* ap,
  std.complex.Complex!(double)* bp,
  double* w,
  std.complex.Complex!(double)* z,
  int ldz,
  std.complex.Complex!(double)* work,
  double* rwork,
  ref int info
);