Clp  1.16.6
List of all members
AbcNonLinearCost Class Reference

#include <AbcNonLinearCost.hpp>

Public Member Functions

Constructors, destructor
 AbcNonLinearCost ()
 Default constructor. More...
 
 AbcNonLinearCost (AbcSimplex *model)
 Constructor from simplex. More...
 
 ~AbcNonLinearCost ()
 Destructor. More...
 
 AbcNonLinearCost (const AbcNonLinearCost &)
 
AbcNonLinearCostoperator= (const AbcNonLinearCost &)
 
Actual work in primal
void checkInfeasibilities (double oldTolerance=0.0)
 Changes infeasible costs and computes number and cost of infeas Puts all non-basic (non free) variables to bounds and all free variables to zero if oldTolerance is non-zero. More...
 
void checkInfeasibilities (int numberInArray, const int *index)
 Changes infeasible costs for each variable The indices are row indices and need converting to sequences. More...
 
void checkChanged (int numberInArray, CoinIndexedVector *update)
 Puts back correct infeasible costs for each variable The input indices are row indices and need converting to sequences for costs. More...
 
void goThru (int numberInArray, double multiplier, const int *index, const double *work, double *rhs)
 Goes through one bound for each variable. More...
 
void goBack (int numberInArray, const int *index, double *rhs)
 Takes off last iteration (i.e. More...
 
void goBackAll (const CoinIndexedVector *update)
 Puts back correct infeasible costs for each variable The input indices are row indices and need converting to sequences for costs. More...
 
void zapCosts ()
 Temporary zeroing of feasible costs. More...
 
void refreshCosts (const double *columnCosts)
 Refreshes costs always makes row costs zero. More...
 
void feasibleBounds ()
 Puts feasible bounds into lower and upper. More...
 
void refresh ()
 Refresh - assuming regions OK. More...
 
void refreshFromPerturbed (double tolerance)
 Refresh - from original. More...
 
double setOne (int sequence, double solutionValue)
 Sets bounds and cost for one variable Returns change in cost May need to be inline for speed. More...
 
double setOneBasic (int iRow, double solutionValue)
 Sets bounds and cost for one variable Returns change in cost May need to be inline for speed. More...
 
int setOneOutgoing (int sequence, double &solutionValue)
 Sets bounds and cost for outgoing variable may change value Returns direction. More...
 
double nearest (int iRow, double solutionValue)
 Returns nearest bound. More...
 
double changeInCost (int, double alpha) const
 Returns change in cost - one down if alpha >0.0, up if <0.0 Value is current - new. More...
 
double changeUpInCost (int) const
 
double changeDownInCost (int) const
 
double changeInCost (int iRow, double alpha, double &rhs)
 This also updates next bound. More...
 
Gets and sets
int numberInfeasibilities () const
 Number of infeasibilities. More...
 
double changeInCost () const
 Change in cost. More...
 
double feasibleCost () const
 Feasible cost. More...
 
double feasibleReportCost () const
 Feasible cost with offset and direction (i.e. for reporting) More...
 
double sumInfeasibilities () const
 Sum of infeasibilities. More...
 
double largestInfeasibility () const
 Largest infeasibility. More...
 
double averageTheta () const
 Average theta. More...
 
void setAverageTheta (double value)
 
void setChangeInCost (double value)
 
Private functions to deal with infeasible regions
unsigned char * statusArray () const
 
int getCurrentStatus (int sequence)
 
void validate ()
 For debug. More...
 

Detailed Description

Definition at line 72 of file AbcNonLinearCost.hpp.

Constructor & Destructor Documentation

AbcNonLinearCost::AbcNonLinearCost ( )

Default constructor.

AbcNonLinearCost::AbcNonLinearCost ( AbcSimplex model)

Constructor from simplex.

This will just set up wasteful arrays for linear, but later may do dual analysis and even finding duplicate columns .

AbcNonLinearCost::~AbcNonLinearCost ( )

Destructor.

AbcNonLinearCost::AbcNonLinearCost ( const AbcNonLinearCost )

Member Function Documentation

AbcNonLinearCost& AbcNonLinearCost::operator= ( const AbcNonLinearCost )
void AbcNonLinearCost::checkInfeasibilities ( double  oldTolerance = 0.0)

Changes infeasible costs and computes number and cost of infeas Puts all non-basic (non free) variables to bounds and all free variables to zero if oldTolerance is non-zero.

  • but does not move those <= oldTolerance away
void AbcNonLinearCost::checkInfeasibilities ( int  numberInArray,
const int *  index 
)

Changes infeasible costs for each variable The indices are row indices and need converting to sequences.

void AbcNonLinearCost::checkChanged ( int  numberInArray,
CoinIndexedVector *  update 
)

Puts back correct infeasible costs for each variable The input indices are row indices and need converting to sequences for costs.

On input array is empty (but indices exist). On exit just changed costs will be stored as normal CoinIndexedVector

void AbcNonLinearCost::goThru ( int  numberInArray,
double  multiplier,
const int *  index,
const double *  work,
double *  rhs 
)

Goes through one bound for each variable.

If multiplier*work[iRow]>0 goes down, otherwise up. The indices are row indices and need converting to sequences Temporary offsets may be set Rhs entries are increased

void AbcNonLinearCost::goBack ( int  numberInArray,
const int *  index,
double *  rhs 
)

Takes off last iteration (i.e.

offsets closer to 0)

void AbcNonLinearCost::goBackAll ( const CoinIndexedVector *  update)

Puts back correct infeasible costs for each variable The input indices are row indices and need converting to sequences for costs.

At the end of this all temporary offsets are zero

void AbcNonLinearCost::zapCosts ( )

Temporary zeroing of feasible costs.

void AbcNonLinearCost::refreshCosts ( const double *  columnCosts)

Refreshes costs always makes row costs zero.

void AbcNonLinearCost::feasibleBounds ( )

Puts feasible bounds into lower and upper.

void AbcNonLinearCost::refresh ( )

Refresh - assuming regions OK.

void AbcNonLinearCost::refreshFromPerturbed ( double  tolerance)

Refresh - from original.

double AbcNonLinearCost::setOne ( int  sequence,
double  solutionValue 
)

Sets bounds and cost for one variable Returns change in cost May need to be inline for speed.

double AbcNonLinearCost::setOneBasic ( int  iRow,
double  solutionValue 
)

Sets bounds and cost for one variable Returns change in cost May need to be inline for speed.

int AbcNonLinearCost::setOneOutgoing ( int  sequence,
double &  solutionValue 
)

Sets bounds and cost for outgoing variable may change value Returns direction.

double AbcNonLinearCost::nearest ( int  iRow,
double  solutionValue 
)

Returns nearest bound.

double AbcNonLinearCost::changeInCost ( int  ,
double  alpha 
) const
inline

Returns change in cost - one down if alpha >0.0, up if <0.0 Value is current - new.

Definition at line 158 of file AbcNonLinearCost.hpp.

double AbcNonLinearCost::changeUpInCost ( int  ) const
inline

Definition at line 161 of file AbcNonLinearCost.hpp.

double AbcNonLinearCost::changeDownInCost ( int  ) const
inline

Definition at line 164 of file AbcNonLinearCost.hpp.

double AbcNonLinearCost::changeInCost ( int  iRow,
double  alpha,
double &  rhs 
)
inline

This also updates next bound.

Definition at line 168 of file AbcNonLinearCost.hpp.

int AbcNonLinearCost::numberInfeasibilities ( ) const
inline

Number of infeasibilities.

Definition at line 207 of file AbcNonLinearCost.hpp.

double AbcNonLinearCost::changeInCost ( ) const
inline

Change in cost.

Definition at line 211 of file AbcNonLinearCost.hpp.

double AbcNonLinearCost::feasibleCost ( ) const
inline

Feasible cost.

Definition at line 215 of file AbcNonLinearCost.hpp.

double AbcNonLinearCost::feasibleReportCost ( ) const

Feasible cost with offset and direction (i.e. for reporting)

double AbcNonLinearCost::sumInfeasibilities ( ) const
inline

Sum of infeasibilities.

Definition at line 221 of file AbcNonLinearCost.hpp.

double AbcNonLinearCost::largestInfeasibility ( ) const
inline

Largest infeasibility.

Definition at line 225 of file AbcNonLinearCost.hpp.

double AbcNonLinearCost::averageTheta ( ) const
inline

Average theta.

Definition at line 229 of file AbcNonLinearCost.hpp.

void AbcNonLinearCost::setAverageTheta ( double  value)
inline

Definition at line 232 of file AbcNonLinearCost.hpp.

void AbcNonLinearCost::setChangeInCost ( double  value)
inline

Definition at line 235 of file AbcNonLinearCost.hpp.

unsigned char* AbcNonLinearCost::statusArray ( ) const
inline

Definition at line 240 of file AbcNonLinearCost.hpp.

int AbcNonLinearCost::getCurrentStatus ( int  sequence)
inline

Definition at line 243 of file AbcNonLinearCost.hpp.

void AbcNonLinearCost::validate ( )

For debug.


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