Function sgglse_

Solves the LSE (Constrained Linear Least Squares Problem) using the GRQ (Generalized RQ) factorization

extern(C) void sgglse_ (
  int* m,
  int* n,
  int* p,
  float* a,
  int* lda,
  float* b,
  int* ldb,
  float* c,
  float* d,
  float* x,
  float* work,
  int* lwork,
  int* info
);