ClpInterior Class Reference

This solves LPs using interior point methods. More...

#include <ClpInterior.hpp>

Inheritance diagram for ClpInterior:
Inheritance graph
[legend]
Collaboration diagram for ClpInterior:
Collaboration graph
[legend]

List of all members.

Public Member Functions

Constructors and destructor and copy



 ClpInterior ()
 Default constructor.
 ClpInterior (const ClpInterior &)
 Copy constructor.
 ClpInterior (const ClpModel &)
 Copy constructor from model.
 ClpInterior (const ClpModel *wholeModel, int numberRows, const int *whichRows, int numberColumns, const int *whichColumns, bool dropNames=true, bool dropIntegers=true)
 Subproblem constructor.
ClpInterioroperator= (const ClpInterior &rhs)
 Assignment operator. This copies the data.
 ~ClpInterior ()
 Destructor.
void loadProblem (const ClpMatrixBase &matrix, const double *collb, const double *colub, const double *obj, const double *rowlb, const double *rowub, const double *rowObjective=NULL)
 Loads a problem (the constraints on the rows are given by lower and upper bounds).
void loadProblem (const CoinPackedMatrix &matrix, const double *collb, const double *colub, const double *obj, const double *rowlb, const double *rowub, const double *rowObjective=NULL)
 Default constructor.
void loadProblem (const int numcols, const int numrows, const CoinBigIndex *start, const int *index, const double *value, const double *collb, const double *colub, const double *obj, const double *rowlb, const double *rowub, const double *rowObjective=NULL)
 Just like the other loadProblem() method except that the matrix is given in a standard column major ordered format (without gaps).
void loadProblem (const int numcols, const int numrows, const CoinBigIndex *start, const int *index, const double *value, const int *length, const double *collb, const double *colub, const double *obj, const double *rowlb, const double *rowub, const double *rowObjective=NULL)
 This one is for after presolve to save memory.
int readMps (const char *filename, bool keepNames=false, bool ignoreErrors=false)
 Read an mps file from the given filename.
void borrowModel (ClpModel &otherModel)
 Borrow model.
void returnModel (ClpModel &otherModel)
 Return model - updates any scalars.
Functions most useful to user



int pdco ()
 Pdco algorithm - see ClpPdco.hpp for method.
int pdco (ClpPdcoBase *stuff, Options &options, Info &info, Outfo &outfo)
 Pdco algorithm - see ClpPdco.hpp for method.
int primalDual ()
 Primal-Dual Predictor-Corrector barrier.
most useful gets and sets



bool primalFeasible () const
 If problem is primal feasible.
bool dualFeasible () const
 If problem is dual feasible.
int algorithm () const
 Current (or last) algorithm.
void setAlgorithm (int value)
 Set algorithm.
double sumDualInfeasibilities () const
 Sum of dual infeasibilities.
double sumPrimalInfeasibilities () const
 Sum of primal infeasibilities.
double dualObjective () const
 dualObjective.
double primalObjective () const
 primalObjective.
double diagonalNorm () const
 diagonalNorm
double linearPerturbation () const
 linearPerturbation
void setLinearPerturbation (double value)
 If problem is primal feasible.
double diagonalPerturbation () const
 diagonalPerturbation
void setDiagonalPerturbation (double value)
 If problem is primal feasible.
double gamma () const
 gamma
void setGamma (double value)
 If problem is primal feasible.
double delta () const
 delta
void setDelta (double value)
 If problem is primal feasible.
double complementarityGap () const
 ComplementarityGap.
double largestPrimalError () const
 Largest error on Ax-b.
double largestDualError () const
 Largest error on basic duals.
int maximumBarrierIterations () const
 Maximum iterations.
void setMaximumBarrierIterations (int value)
 If problem is primal feasible.
void setCholesky (ClpCholeskyBase *cholesky)
 Set cholesky (and delete present one).
int numberFixed () const
 Return number fixed to see if worth presolving.
void fixFixed (bool reallyFix=true)
 fix variables interior says should be.
double * primalR () const
 Primal erturbation vector.
double * dualR () const
 Dual erturbation vector.
public methods



double rawObjectiveValue () const
 Raw objective value (so always minimize).
int isColumn (int sequence) const
 Returns 1 if sequence indicates column.
int sequenceWithin (int sequence) const
 Returns sequence number within section.
void checkSolution ()
 Checks solution.
double quadraticDjs (double *djRegion, const double *solution, double scaleFactor)
 Modifies djs to allow for quadratic.
void setFixed (int sequence)
 To say a variable is fixed.
void clearFixed (int sequence)
 Raw objective value (so always minimize).
bool fixed (int sequence) const
 Raw objective value (so always minimize).
void setFlagged (int sequence)
 To flag a variable.
void clearFlagged (int sequence)
 Raw objective value (so always minimize).
bool flagged (int sequence) const
 Raw objective value (so always minimize).
void setFixedOrFree (int sequence)
 To say a variable is fixed OR free.
void clearFixedOrFree (int sequence)
 Raw objective value (so always minimize).
bool fixedOrFree (int sequence) const
 Raw objective value (so always minimize).
void setLowerBound (int sequence)
 To say a variable has lower bound.
void clearLowerBound (int sequence)
 Raw objective value (so always minimize).
bool lowerBound (int sequence) const
 Raw objective value (so always minimize).
void setUpperBound (int sequence)
 To say a variable has upper bound.
void clearUpperBound (int sequence)
 Raw objective value (so always minimize).
bool upperBound (int sequence) const
 Raw objective value (so always minimize).
void setFakeLower (int sequence)
 To say a variable has fake lower bound.
void clearFakeLower (int sequence)
 Raw objective value (so always minimize).
bool fakeLower (int sequence) const
 Raw objective value (so always minimize).
void setFakeUpper (int sequence)
 To say a variable has fake upper bound.
void clearFakeUpper (int sequence)
 Raw objective value (so always minimize).
bool fakeUpper (int sequence) const
 Raw objective value (so always minimize).

Protected Member Functions

protected methods



void gutsOfDelete ()
 Does most of deletion.
void gutsOfCopy (const ClpInterior &rhs)
 Does most of copying.
bool createWorkingData ()
 Returns true if data looks okay, false if not.
void deleteWorkingData ()
 Does most of deletion.
bool sanityCheck ()
 Sanity check on input rim data.
int housekeeping ()
 This does housekeeping.

Friends

void ClpInteriorUnitTest (const std::string &mpsDir, const std::string &netlibDir)
 A function that tests the methods in the ClpInterior class.

data. Many arrays have a row part and a column part.

There is a single array with both - columns then rows and then normally two arrays pointing to rows and columns.

The single array is the owner of memory



double largestPrimalError_
 Largest error on Ax-b.
double largestDualError_
 Largest error on basic duals.
double sumDualInfeasibilities_
 Sum of dual infeasibilities.
double sumPrimalInfeasibilities_
 Sum of primal infeasibilities.
double worstComplementarity_
 Worst complementarity.
double * lower_
 Working copy of lower bounds (Owner of arrays below).
double * rowLowerWork_
 Row lower bounds - working copy.
double * columnLowerWork_
 Column lower bounds - working copy.
double * upper_
 Working copy of upper bounds (Owner of arrays below).
double * rowUpperWork_
 Row upper bounds - working copy.
double * columnUpperWork_
 Column upper bounds - working copy.
double * cost_
 Working copy of objective.
ClpLsqrlsqrObject_
 Pointer to Lsqr object.
ClpPdcoBasepdcoStuff_
 Pointer to stuff.
double mu_
 Below here is standard barrier stuff mu.
double objectiveNorm_
 objectiveNorm.
double rhsNorm_
 rhsNorm.
double solutionNorm_
 solutionNorm.
double dualObjective_
 dualObjective.
double primalObjective_
 primalObjective.
double diagonalNorm_
 diagonalNorm.
double stepLength_
 stepLength
double linearPerturbation_
 linearPerturbation
double diagonalPerturbation_
 diagonalPerturbation
double gamma_
 Largest error on Ax-b.
double delta_
 Largest error on Ax-b.
double targetGap_
 targetGap
double projectionTolerance_
 projectionTolerance
double maximumRHSError_
 maximumRHSError. maximum Ax
double maximumBoundInfeasibility_
 maximumBoundInfeasibility.
double maximumDualError_
 maximumDualError.
double diagonalScaleFactor_
 diagonalScaleFactor.
double scaleFactor_
 scaleFactor. For scaling objective
double actualPrimalStep_
 actualPrimalStep
double actualDualStep_
 actualDualStep
double smallestInfeasibility_
 smallestInfeasibility
double historyInfeasibility_ [LENGTH_HISTORY]
 Largest error on Ax-b.
double complementarityGap_
 complementarityGap.
double baseObjectiveNorm_
 baseObjectiveNorm
double worstDirectionAccuracy_
 worstDirectionAccuracy
double maximumRHSChange_
 maximumRHSChange
double * errorRegion_
 errorRegion. i.e. Ax
double * rhsFixRegion_
 rhsFixRegion.
double * upperSlack_
 upperSlack
double * lowerSlack_
 lowerSlack
double * diagonal_
 diagonal
double * solution_
 solution
double * workArray_
 work array
double * deltaX_
 delta X
double * deltaY_
 delta Y
double * deltaZ_
 deltaZ.
double * deltaW_
 deltaW.
double * deltaSU_
 deltaS.
double * deltaSL_
 Largest error on Ax-b.
double * primalR_
 Primal regularization array.
double * dualR_
 Dual regularization array.
double * rhsB_
 rhs B
double * rhsU_
 rhsU.
double * rhsL_
 rhsL.
double * rhsZ_
 rhsZ.
double * rhsW_
 rhsW.
double * rhsC_
 rhs C
double * zVec_
 zVec
double * wVec_
 wVec
ClpCholeskyBasecholesky_
 cholesky.
int numberComplementarityPairs_
 numberComplementarityPairs i.e. ones with lower and/or upper bounds (not fixed)
int numberComplementarityItems_
 numberComplementarityItems_ i.e. number of active bounds
int maximumBarrierIterations_
 Maximum iterations.
bool gonePrimalFeasible_
 gonePrimalFeasible.
bool goneDualFeasible_
 goneDualFeasible.
int algorithm_
 Which algorithm being used.
double xsize_
 Largest error on Ax-b.
double zsize_
 Largest error on Ax-b.
double * rhs_
 Rhs.
double * x_
 Largest error on Ax-b.
double * y_
 Largest error on Ax-b.
double * dj_
 Largest error on Ax-b.

Detailed Description

This solves LPs using interior point methods.

It inherits from ClpModel and all its arrays are created at algorithm time.

Definition at line 71 of file ClpInterior.hpp.


Constructor & Destructor Documentation

ClpInterior::ClpInterior (  ) 

Default constructor.

ClpInterior::ClpInterior ( const ClpInterior  ) 

Copy constructor.

ClpInterior::ClpInterior ( const ClpModel  ) 

Copy constructor from model.

ClpInterior::ClpInterior ( const ClpModel wholeModel,
int  numberRows,
const int *  whichRows,
int  numberColumns,
const int *  whichColumns,
bool  dropNames = true,
bool  dropIntegers = true 
)

Subproblem constructor.

A subset of whole model is created from the row and column lists given. The new order is given by list order and duplicates are allowed. Name and integer information can be dropped

ClpInterior::~ClpInterior (  ) 

Destructor.


Member Function Documentation

ClpInterior& ClpInterior::operator= ( const ClpInterior rhs  ) 

Assignment operator. This copies the data.

Reimplemented from ClpModel.

void ClpInterior::loadProblem ( const ClpMatrixBase matrix,
const double *  collb,
const double *  colub,
const double *  obj,
const double *  rowlb,
const double *  rowub,
const double *  rowObjective = NULL 
)

Loads a problem (the constraints on the rows are given by lower and upper bounds).

If a pointer is 0 then the following values are the default:

  • colub: all columns have upper bound infinity
  • collb: all columns have lower bound 0
  • rowub: all rows have upper bound infinity
  • rowlb: all rows have lower bound -infinity
  • obj: all variables have 0 objective coefficient

Reimplemented from ClpModel.

void ClpInterior::loadProblem ( const CoinPackedMatrix matrix,
const double *  collb,
const double *  colub,
const double *  obj,
const double *  rowlb,
const double *  rowub,
const double *  rowObjective = NULL 
)

Default constructor.

Reimplemented from ClpModel.

void ClpInterior::loadProblem ( const int  numcols,
const int  numrows,
const CoinBigIndex start,
const int *  index,
const double *  value,
const double *  collb,
const double *  colub,
const double *  obj,
const double *  rowlb,
const double *  rowub,
const double *  rowObjective = NULL 
)

Just like the other loadProblem() method except that the matrix is given in a standard column major ordered format (without gaps).

Reimplemented from ClpModel.

void ClpInterior::loadProblem ( const int  numcols,
const int  numrows,
const CoinBigIndex start,
const int *  index,
const double *  value,
const int *  length,
const double *  collb,
const double *  colub,
const double *  obj,
const double *  rowlb,
const double *  rowub,
const double *  rowObjective = NULL 
)

This one is for after presolve to save memory.

Reimplemented from ClpModel.

int ClpInterior::readMps ( const char *  filename,
bool  keepNames = false,
bool  ignoreErrors = false 
)

Read an mps file from the given filename.

Reimplemented from ClpModel.

void ClpInterior::borrowModel ( ClpModel otherModel  ) 

Borrow model.

This is so we dont have to copy large amounts of data around. It assumes a derived class wants to overwrite an empty model with a real one - while it does an algorithm. This is same as ClpModel one.

void ClpInterior::returnModel ( ClpModel otherModel  ) 

Return model - updates any scalars.

int ClpInterior::pdco (  ) 

Pdco algorithm - see ClpPdco.hpp for method.

Reimplemented in ClpPdco.

int ClpInterior::pdco ( ClpPdcoBase stuff,
Options options,
Info info,
Outfo outfo 
)

Pdco algorithm - see ClpPdco.hpp for method.

Reimplemented in ClpPdco.

int ClpInterior::primalDual (  ) 

Primal-Dual Predictor-Corrector barrier.

bool ClpInterior::primalFeasible (  )  const [inline]

If problem is primal feasible.

Definition at line 164 of file ClpInterior.hpp.

bool ClpInterior::dualFeasible (  )  const [inline]

If problem is dual feasible.

Definition at line 167 of file ClpInterior.hpp.

int ClpInterior::algorithm (  )  const [inline]

Current (or last) algorithm.

Definition at line 170 of file ClpInterior.hpp.

void ClpInterior::setAlgorithm ( int  value  )  [inline]

Set algorithm.

Definition at line 173 of file ClpInterior.hpp.

double ClpInterior::sumDualInfeasibilities (  )  const [inline]

Sum of dual infeasibilities.

Definition at line 176 of file ClpInterior.hpp.

double ClpInterior::sumPrimalInfeasibilities (  )  const [inline]

Sum of primal infeasibilities.

Definition at line 179 of file ClpInterior.hpp.

double ClpInterior::dualObjective (  )  const [inline]

dualObjective.

Definition at line 182 of file ClpInterior.hpp.

double ClpInterior::primalObjective (  )  const [inline]

primalObjective.

Definition at line 185 of file ClpInterior.hpp.

double ClpInterior::diagonalNorm (  )  const [inline]

diagonalNorm

Definition at line 188 of file ClpInterior.hpp.

double ClpInterior::linearPerturbation (  )  const [inline]

linearPerturbation

Definition at line 191 of file ClpInterior.hpp.

void ClpInterior::setLinearPerturbation ( double  value  )  [inline]

If problem is primal feasible.

Definition at line 193 of file ClpInterior.hpp.

double ClpInterior::diagonalPerturbation (  )  const [inline]

diagonalPerturbation

Definition at line 196 of file ClpInterior.hpp.

void ClpInterior::setDiagonalPerturbation ( double  value  )  [inline]

If problem is primal feasible.

Definition at line 198 of file ClpInterior.hpp.

double ClpInterior::gamma (  )  const [inline]

gamma

Definition at line 201 of file ClpInterior.hpp.

void ClpInterior::setGamma ( double  value  )  [inline]

If problem is primal feasible.

Definition at line 203 of file ClpInterior.hpp.

double ClpInterior::delta (  )  const [inline]

delta

Definition at line 206 of file ClpInterior.hpp.

void ClpInterior::setDelta ( double  value  )  [inline]

If problem is primal feasible.

Definition at line 208 of file ClpInterior.hpp.

double ClpInterior::complementarityGap (  )  const [inline]

ComplementarityGap.

Definition at line 211 of file ClpInterior.hpp.

double ClpInterior::largestPrimalError (  )  const [inline]

Largest error on Ax-b.

Definition at line 218 of file ClpInterior.hpp.

double ClpInterior::largestDualError (  )  const [inline]

Largest error on basic duals.

Definition at line 221 of file ClpInterior.hpp.

int ClpInterior::maximumBarrierIterations (  )  const [inline]

Maximum iterations.

Definition at line 224 of file ClpInterior.hpp.

void ClpInterior::setMaximumBarrierIterations ( int  value  )  [inline]

If problem is primal feasible.

Definition at line 226 of file ClpInterior.hpp.

void ClpInterior::setCholesky ( ClpCholeskyBase cholesky  ) 

Set cholesky (and delete present one).

int ClpInterior::numberFixed (  )  const

Return number fixed to see if worth presolving.

void ClpInterior::fixFixed ( bool  reallyFix = true  ) 

fix variables interior says should be.

If reallyFix false then just set values to exact bounds

double* ClpInterior::primalR (  )  const [inline]

Primal erturbation vector.

Definition at line 236 of file ClpInterior.hpp.

double* ClpInterior::dualR (  )  const [inline]

Dual erturbation vector.

Definition at line 239 of file ClpInterior.hpp.

void ClpInterior::gutsOfDelete (  )  [protected]

Does most of deletion.

void ClpInterior::gutsOfCopy ( const ClpInterior rhs  )  [protected]

Does most of copying.

bool ClpInterior::createWorkingData (  )  [protected]

Returns true if data looks okay, false if not.

void ClpInterior::deleteWorkingData (  )  [protected]

Does most of deletion.

bool ClpInterior::sanityCheck (  )  [protected]

Sanity check on input rim data.

int ClpInterior::housekeeping (  )  [protected]

This does housekeeping.

double ClpInterior::rawObjectiveValue (  )  const [inline]

Raw objective value (so always minimize).

Reimplemented from ClpModel.

Definition at line 262 of file ClpInterior.hpp.

int ClpInterior::isColumn ( int  sequence  )  const [inline]

Returns 1 if sequence indicates column.

Definition at line 265 of file ClpInterior.hpp.

int ClpInterior::sequenceWithin ( int  sequence  )  const [inline]

Returns sequence number within section.

Definition at line 268 of file ClpInterior.hpp.

void ClpInterior::checkSolution (  ) 

Checks solution.

double ClpInterior::quadraticDjs ( double *  djRegion,
const double *  solution,
double  scaleFactor 
)

Modifies djs to allow for quadratic.

returns quadratic offset

void ClpInterior::setFixed ( int  sequence  )  [inline]

To say a variable is fixed.

Definition at line 278 of file ClpInterior.hpp.

void ClpInterior::clearFixed ( int  sequence  )  [inline]

Raw objective value (so always minimize).

Definition at line 282 of file ClpInterior.hpp.

bool ClpInterior::fixed ( int  sequence  )  const [inline]

Raw objective value (so always minimize).

Definition at line 286 of file ClpInterior.hpp.

void ClpInterior::setFlagged ( int  sequence  )  [inline]

To flag a variable.

Definition at line 290 of file ClpInterior.hpp.

void ClpInterior::clearFlagged ( int  sequence  )  [inline]

Raw objective value (so always minimize).

Definition at line 294 of file ClpInterior.hpp.

bool ClpInterior::flagged ( int  sequence  )  const [inline]

Raw objective value (so always minimize).

Definition at line 298 of file ClpInterior.hpp.

void ClpInterior::setFixedOrFree ( int  sequence  )  [inline]

To say a variable is fixed OR free.

Definition at line 302 of file ClpInterior.hpp.

void ClpInterior::clearFixedOrFree ( int  sequence  )  [inline]

Raw objective value (so always minimize).

Definition at line 306 of file ClpInterior.hpp.

bool ClpInterior::fixedOrFree ( int  sequence  )  const [inline]

Raw objective value (so always minimize).

Definition at line 310 of file ClpInterior.hpp.

void ClpInterior::setLowerBound ( int  sequence  )  [inline]

To say a variable has lower bound.

Definition at line 314 of file ClpInterior.hpp.

void ClpInterior::clearLowerBound ( int  sequence  )  [inline]

Raw objective value (so always minimize).

Definition at line 318 of file ClpInterior.hpp.

bool ClpInterior::lowerBound ( int  sequence  )  const [inline]

Raw objective value (so always minimize).

Definition at line 322 of file ClpInterior.hpp.

void ClpInterior::setUpperBound ( int  sequence  )  [inline]

To say a variable has upper bound.

Definition at line 326 of file ClpInterior.hpp.

void ClpInterior::clearUpperBound ( int  sequence  )  [inline]

Raw objective value (so always minimize).

Definition at line 330 of file ClpInterior.hpp.

bool ClpInterior::upperBound ( int  sequence  )  const [inline]

Raw objective value (so always minimize).

Definition at line 334 of file ClpInterior.hpp.

void ClpInterior::setFakeLower ( int  sequence  )  [inline]

To say a variable has fake lower bound.

Definition at line 338 of file ClpInterior.hpp.

void ClpInterior::clearFakeLower ( int  sequence  )  [inline]

Raw objective value (so always minimize).

Definition at line 342 of file ClpInterior.hpp.

bool ClpInterior::fakeLower ( int  sequence  )  const [inline]

Raw objective value (so always minimize).

Definition at line 346 of file ClpInterior.hpp.

void ClpInterior::setFakeUpper ( int  sequence  )  [inline]

To say a variable has fake upper bound.

Definition at line 350 of file ClpInterior.hpp.

void ClpInterior::clearFakeUpper ( int  sequence  )  [inline]

Raw objective value (so always minimize).

Definition at line 354 of file ClpInterior.hpp.

bool ClpInterior::fakeUpper ( int  sequence  )  const [inline]

Raw objective value (so always minimize).

Definition at line 358 of file ClpInterior.hpp.


Friends And Related Function Documentation

void ClpInteriorUnitTest ( const std::string &  mpsDir,
const std::string &  netlibDir 
) [friend]

A function that tests the methods in the ClpInterior class.

The only reason for it not to be a member method is that this way it doesn't have to be compiled into the library. And that's a gain, because the library should be compiled with optimization on, but this method should be compiled with debugging.

It also does some testing of ClpFactorization class


Member Data Documentation

Largest error on Ax-b.

Definition at line 372 of file ClpInterior.hpp.

double ClpInterior::largestDualError_ [protected]

Largest error on basic duals.

Definition at line 374 of file ClpInterior.hpp.

Sum of dual infeasibilities.

Definition at line 376 of file ClpInterior.hpp.

Sum of primal infeasibilities.

Definition at line 378 of file ClpInterior.hpp.

Worst complementarity.

Definition at line 380 of file ClpInterior.hpp.

Largest error on Ax-b.

Definition at line 383 of file ClpInterior.hpp.

Largest error on Ax-b.

Definition at line 384 of file ClpInterior.hpp.

double* ClpInterior::lower_ [protected]

Working copy of lower bounds (Owner of arrays below).

Definition at line 387 of file ClpInterior.hpp.

double* ClpInterior::rowLowerWork_ [protected]

Row lower bounds - working copy.

Definition at line 389 of file ClpInterior.hpp.

double* ClpInterior::columnLowerWork_ [protected]

Column lower bounds - working copy.

Definition at line 391 of file ClpInterior.hpp.

double* ClpInterior::upper_ [protected]

Working copy of upper bounds (Owner of arrays below).

Definition at line 393 of file ClpInterior.hpp.

double* ClpInterior::rowUpperWork_ [protected]

Row upper bounds - working copy.

Definition at line 395 of file ClpInterior.hpp.

double* ClpInterior::columnUpperWork_ [protected]

Column upper bounds - working copy.

Definition at line 397 of file ClpInterior.hpp.

double* ClpInterior::cost_ [protected]

Working copy of objective.

Definition at line 399 of file ClpInterior.hpp.

Rhs.

Definition at line 402 of file ClpInterior.hpp.

double* ClpInterior::x_

Largest error on Ax-b.

Definition at line 403 of file ClpInterior.hpp.

double* ClpInterior::y_

Largest error on Ax-b.

Definition at line 404 of file ClpInterior.hpp.

Largest error on Ax-b.

Definition at line 405 of file ClpInterior.hpp.

Pointer to Lsqr object.

Definition at line 408 of file ClpInterior.hpp.

Pointer to stuff.

Definition at line 410 of file ClpInterior.hpp.

double ClpInterior::mu_ [protected]

Below here is standard barrier stuff mu.

Definition at line 413 of file ClpInterior.hpp.

double ClpInterior::objectiveNorm_ [protected]

objectiveNorm.

Definition at line 415 of file ClpInterior.hpp.

double ClpInterior::rhsNorm_ [protected]

rhsNorm.

Definition at line 417 of file ClpInterior.hpp.

double ClpInterior::solutionNorm_ [protected]

solutionNorm.

Definition at line 419 of file ClpInterior.hpp.

double ClpInterior::dualObjective_ [protected]

dualObjective.

Definition at line 421 of file ClpInterior.hpp.

double ClpInterior::primalObjective_ [protected]

primalObjective.

Definition at line 423 of file ClpInterior.hpp.

double ClpInterior::diagonalNorm_ [protected]

diagonalNorm.

Definition at line 425 of file ClpInterior.hpp.

double ClpInterior::stepLength_ [protected]

stepLength

Definition at line 427 of file ClpInterior.hpp.

linearPerturbation

Definition at line 429 of file ClpInterior.hpp.

diagonalPerturbation

Definition at line 431 of file ClpInterior.hpp.

double ClpInterior::gamma_ [protected]

Largest error on Ax-b.

Definition at line 433 of file ClpInterior.hpp.

double ClpInterior::delta_ [protected]

Largest error on Ax-b.

Definition at line 435 of file ClpInterior.hpp.

double ClpInterior::targetGap_ [protected]

targetGap

Definition at line 437 of file ClpInterior.hpp.

projectionTolerance

Definition at line 439 of file ClpInterior.hpp.

double ClpInterior::maximumRHSError_ [protected]

maximumRHSError. maximum Ax

Definition at line 441 of file ClpInterior.hpp.

maximumBoundInfeasibility.

Definition at line 443 of file ClpInterior.hpp.

double ClpInterior::maximumDualError_ [protected]

maximumDualError.

Definition at line 445 of file ClpInterior.hpp.

diagonalScaleFactor.

Definition at line 447 of file ClpInterior.hpp.

double ClpInterior::scaleFactor_ [protected]

scaleFactor. For scaling objective

Definition at line 449 of file ClpInterior.hpp.

double ClpInterior::actualPrimalStep_ [protected]

actualPrimalStep

Definition at line 451 of file ClpInterior.hpp.

double ClpInterior::actualDualStep_ [protected]

actualDualStep

Definition at line 453 of file ClpInterior.hpp.

smallestInfeasibility

Definition at line 455 of file ClpInterior.hpp.

double ClpInterior::historyInfeasibility_[LENGTH_HISTORY] [protected]

Largest error on Ax-b.

Definition at line 458 of file ClpInterior.hpp.

complementarityGap.

Definition at line 460 of file ClpInterior.hpp.

double ClpInterior::baseObjectiveNorm_ [protected]

baseObjectiveNorm

Definition at line 462 of file ClpInterior.hpp.

worstDirectionAccuracy

Definition at line 464 of file ClpInterior.hpp.

double ClpInterior::maximumRHSChange_ [protected]

maximumRHSChange

Definition at line 466 of file ClpInterior.hpp.

double* ClpInterior::errorRegion_ [protected]

errorRegion. i.e. Ax

Definition at line 468 of file ClpInterior.hpp.

double* ClpInterior::rhsFixRegion_ [protected]

rhsFixRegion.

Definition at line 470 of file ClpInterior.hpp.

double* ClpInterior::upperSlack_ [protected]

upperSlack

Definition at line 472 of file ClpInterior.hpp.

double* ClpInterior::lowerSlack_ [protected]

lowerSlack

Definition at line 474 of file ClpInterior.hpp.

double* ClpInterior::diagonal_ [protected]

diagonal

Definition at line 476 of file ClpInterior.hpp.

double* ClpInterior::solution_ [protected]

solution

Definition at line 478 of file ClpInterior.hpp.

double* ClpInterior::workArray_ [protected]

work array

Definition at line 480 of file ClpInterior.hpp.

double* ClpInterior::deltaX_ [protected]

delta X

Definition at line 482 of file ClpInterior.hpp.

double* ClpInterior::deltaY_ [protected]

delta Y

Definition at line 484 of file ClpInterior.hpp.

double* ClpInterior::deltaZ_ [protected]

deltaZ.

Definition at line 486 of file ClpInterior.hpp.

double* ClpInterior::deltaW_ [protected]

deltaW.

Definition at line 488 of file ClpInterior.hpp.

double* ClpInterior::deltaSU_ [protected]

deltaS.

Definition at line 490 of file ClpInterior.hpp.

double* ClpInterior::deltaSL_ [protected]

Largest error on Ax-b.

Definition at line 491 of file ClpInterior.hpp.

double* ClpInterior::primalR_ [protected]

Primal regularization array.

Definition at line 493 of file ClpInterior.hpp.

double* ClpInterior::dualR_ [protected]

Dual regularization array.

Definition at line 495 of file ClpInterior.hpp.

double* ClpInterior::rhsB_ [protected]

rhs B

Definition at line 497 of file ClpInterior.hpp.

double* ClpInterior::rhsU_ [protected]

rhsU.

Definition at line 499 of file ClpInterior.hpp.

double* ClpInterior::rhsL_ [protected]

rhsL.

Definition at line 501 of file ClpInterior.hpp.

double* ClpInterior::rhsZ_ [protected]

rhsZ.

Definition at line 503 of file ClpInterior.hpp.

double* ClpInterior::rhsW_ [protected]

rhsW.

Definition at line 505 of file ClpInterior.hpp.

double* ClpInterior::rhsC_ [protected]

rhs C

Definition at line 507 of file ClpInterior.hpp.

double* ClpInterior::zVec_ [protected]

zVec

Definition at line 509 of file ClpInterior.hpp.

double* ClpInterior::wVec_ [protected]

wVec

Definition at line 511 of file ClpInterior.hpp.

cholesky.

Definition at line 513 of file ClpInterior.hpp.

numberComplementarityPairs i.e. ones with lower and/or upper bounds (not fixed)

Definition at line 515 of file ClpInterior.hpp.

numberComplementarityItems_ i.e. number of active bounds

Definition at line 517 of file ClpInterior.hpp.

Maximum iterations.

Definition at line 519 of file ClpInterior.hpp.

gonePrimalFeasible.

Definition at line 521 of file ClpInterior.hpp.

goneDualFeasible.

Definition at line 523 of file ClpInterior.hpp.

int ClpInterior::algorithm_ [protected]

Which algorithm being used.

Definition at line 525 of file ClpInterior.hpp.


The documentation for this class was generated from the following file:

Generated on 15 Mar 2015 for Coin-All by  doxygen 1.6.1