Go to the documentation of this file.
9 #include "CoinDenseVector.hpp"
112 bool setParam(
char *parmName,
int parmValue);
116 double damp,
double atol,
double btol,
double conlim,
int itnlim,
117 bool show,
Info info, CoinDenseVector< double > &x,
int *istop,
118 int *itn,
Outfo *outfo,
bool precon, CoinDenseVector< double > &Pr);
120 void matVecMult(
int, CoinDenseVector< double > *, CoinDenseVector< double > *);
122 void matVecMult(
int, CoinDenseVector< double > &, CoinDenseVector< double > &);
void matVecMult(int, CoinDenseVector< double > *, CoinDenseVector< double > *)
Matrix-vector multiply - implemented by user.
void matVecMult(int, CoinDenseVector< double > &, CoinDenseVector< double > &)
int nrows_
Row dimension of matrix.
void borrowDiag1(double *array)
diag1 - we just borrow as it is part of a CoinDenseVector<double>
int ncols_
Column dimension of matrix.
******** DATA to be moved into protected section of ClpInterior
******** DATA to be moved into protected section of ClpInterior
ClpLsqr(ClpInterior *model)
Constructor for use with Pdco model (note modified for pdco!!!!)
double diag2_
Constant diagonal 2.
ClpInterior * model_
Pointer to Model object for this instance.
void do_lsqr(CoinDenseVector< double > &b, double damp, double atol, double btol, double conlim, int itnlim, bool show, Info info, CoinDenseVector< double > &x, int *istop, int *itn, Outfo *outfo, bool precon, CoinDenseVector< double > &Pr)
Call the Lsqr algorithm.
bool setParam(char *parmName, int parmValue)
Set an int parameter.
This solves LPs using interior point methods.
ClpLsqr(const ClpLsqr &)
Copy constructor.
ClpLsqr & operator=(const ClpLsqr &rhs)
Assignment operator. This copies the data.
double * diag1_
Diagonal array 1.
ClpLsqr()
Default constructor.
This class implements LSQR.