sysvx - multiple declarations

Function sysvx

void sysvx (
  char fact,
  char uplo,
  int n,
  int nrhs,
  std.complex.Complex!(float)* a,
  int lda,
  std.complex.Complex!(float)* af,
  int ldaf,
  int* ipiv,
  std.complex.Complex!(float)* b,
  int ldb,
  std.complex.Complex!(float)* x,
  int ldx,
  float rcond,
  float* ferr,
  float* berr,
  std.complex.Complex!(float)* work,
  int lwork,
  float* rwork,
  ref int info
);

Function sysvx

void sysvx (
  char fact,
  char uplo,
  int n,
  int nrhs,
  std.complex.Complex!(double)* a,
  int lda,
  std.complex.Complex!(double)* af,
  int ldaf,
  int* ipiv,
  std.complex.Complex!(double)* b,
  int ldb,
  std.complex.Complex!(double)* x,
  int ldx,
  double rcond,
  double* ferr,
  double* berr,
  std.complex.Complex!(double)* work,
  int lwork,
  double* rwork,
  ref int info
);

Function sysvx

Solves a real symmetric indefinite system of linear equations AX=B, and provides an estimate of the condition number and error bounds on the solution.

void sysvx (
  char fact,
  char uplo,
  int n,
  int nrhs,
  float* a,
  int lda,
  float* af,
  int ldaf,
  int* ipiv,
  float* b,
  int ldb,
  float* x,
  int ldx,
  float rcond,
  float* ferr,
  float* berr,
  float* work,
  int lwork,
  int* iwork,
  ref int info
);

Function sysvx

void sysvx (
  char fact,
  char uplo,
  int n,
  int nrhs,
  double* a,
  int lda,
  double* af,
  int ldaf,
  int* ipiv,
  double* b,
  int ldb,
  double* x,
  int ldx,
  double rcond,
  double* ferr,
  double* berr,
  double* work,
  int lwork,
  int* iwork,
  ref int info
);