Function chprfs_

Improves the computed solution to a complex Hermitian indefinite system of linear equations AX=B, where A is held in packed storage, and provides forward and backward error bounds for the solution.

extern(C) void chprfs_ (
  char* uplo,
  int* n,
  int* nrhs,
  std.complex.Complex!(float)* ap,
  std.complex.Complex!(float)* afp,
  int* ipiv,
  std.complex.Complex!(float)* b,
  int* ldb,
  std.complex.Complex!(float)* x,
  int* ldx,
  float* ferr,
  float* berr,
  std.complex.Complex!(float)* work,
  float* rwork,
  int* info,
  int uplo_len
);