Function chetrs_

Solves a complex Hermitian indefinite system of linear equations AX=B, using the factorization computed by CHPTRF.

extern(C) void chetrs_ (
  char* uplo,
  int* n,
  int* nrhs,
  std.complex.Complex!(float)* a,
  int* lda,
  int* ipiv,
  std.complex.Complex!(float)* b,
  int* ldb,
  int* info,
  int uplo_len
);