CoinUtils  2.10.14
CoinPresolveSubst.hpp
Go to the documentation of this file.
1 /* $Id: CoinPresolveSubst.hpp 1562 2012-11-24 00:36:15Z lou $ */
2 // Copyright (C) 2002, International Business Machines
3 // Corporation and others. All Rights Reserved.
4 // This code is licensed under the terms of the Eclipse Public License (EPL).
5 
6 #ifndef CoinPresolveSubst_H
7 #define CoinPresolveSubst_H
8 
13 #define SUBST_ROW 21
14 
15 #include "CoinPresolveMatrix.hpp"
16 
38 private:
42 
43  struct action {
44  double *rlos;
45  double *rups;
46 
47  double *coeffxs;
48  int *rows;
49 
50  int *ninrowxs;
51  int *rowcolsxs;
52  double *rowelsxs;
53 
54  const double *costsx;
55  int col;
56  int rowy;
57 
58  int nincol;
59  };
60 
61  const int nactions_;
62  // actions_ is owned by the class and must be deleted at destruction
63  const action *const actions_;
64 
66  action *actions,
67  const CoinPresolveAction *next) :
69  nactions_(nactions), actions_(actions) {}
70 
71  public:
72  const char *name() const;
73 
75  const int *implied_free,
76  const int * which,
77  int numberFree,
78  const CoinPresolveAction *next,
79  int fill_level);
81  const CoinPresolveAction *next,
82  int fillLevel);
83 
84  void postsolve(CoinPostsolveMatrix *prob) const;
85 
87 };
88 
89 
90 
91 
92 
93 /*static*/ void implied_bounds(const double *els,
94  const double *clo, const double *cup,
95  const int *hcol,
96  CoinBigIndex krs, CoinBigIndex kre,
97  double *maxupp, double *maxdownp,
98  int jcol,
99  double rlo, double rup,
100  double *iclb, double *icub);
101 #endif
subst_constraint_action::action::coeffxs
double * coeffxs
Definition: CoinPresolveSubst.hpp:47
subst_constraint_action::postsolve
void postsolve(CoinPostsolveMatrix *prob) const
Apply the postsolve transformation for this particular presolve action.
subst_constraint_action::subst_constraint_action
subst_constraint_action(const subst_constraint_action &rhs)
subst_constraint_action::presolve
static const CoinPresolveAction * presolve(CoinPresolveMatrix *prob, const int *implied_free, const int *which, int numberFree, const CoinPresolveAction *next, int fill_level)
subst_constraint_action::presolveX
static const CoinPresolveAction * presolveX(CoinPresolveMatrix *prob, const CoinPresolveAction *next, int fillLevel)
subst_constraint_action::subst_constraint_action
subst_constraint_action(int nactions, action *actions, const CoinPresolveAction *next)
Definition: CoinPresolveSubst.hpp:65
subst_constraint_action::action::rowelsxs
double * rowelsxs
Definition: CoinPresolveSubst.hpp:52
subst_constraint_action::action::rowy
int rowy
Definition: CoinPresolveSubst.hpp:56
subst_constraint_action::subst_constraint_action
subst_constraint_action()
CoinPresolveMatrix.hpp
Declarations for CoinPresolveMatrix and CoinPostsolveMatrix and their common base class CoinPrePostso...
subst_constraint_action::action::col
int col
Definition: CoinPresolveSubst.hpp:55
CoinPresolveAction::next
const CoinPresolveAction * next
The next presolve transformation.
Definition: CoinPresolveMatrix.hpp:171
subst_constraint_action::nactions_
const int nactions_
Definition: CoinPresolveSubst.hpp:61
subst_constraint_action::action::rowcolsxs
int * rowcolsxs
Definition: CoinPresolveSubst.hpp:51
subst_constraint_action::operator=
subst_constraint_action & operator=(const subst_constraint_action &rhs)
subst_constraint_action::action
Definition: CoinPresolveSubst.hpp:43
CoinPostsolveMatrix
Augments CoinPrePostsolveMatrix with information about the problem that is only needed during postsol...
Definition: CoinPresolveMatrix.hpp:1422
subst_constraint_action::action::rups
double * rups
Definition: CoinPresolveSubst.hpp:45
subst_constraint_action
Detect and process implied free variables.
Definition: CoinPresolveSubst.hpp:37
subst_constraint_action::~subst_constraint_action
virtual ~subst_constraint_action()
subst_constraint_action::action::nincol
int nincol
Definition: CoinPresolveSubst.hpp:58
CoinPresolveAction
Abstract base class of all presolve routines.
Definition: CoinPresolveMatrix.hpp:156
subst_constraint_action::action::ninrowxs
int * ninrowxs
Definition: CoinPresolveSubst.hpp:50
subst_constraint_action::name
const char * name() const
A name for debug printing.
implied_bounds
void implied_bounds(const double *els, const double *clo, const double *cup, const int *hcol, CoinBigIndex krs, CoinBigIndex kre, double *maxupp, double *maxdownp, int jcol, double rlo, double rup, double *iclb, double *icub)
subst_constraint_action::actions_
const action *const actions_
Definition: CoinPresolveSubst.hpp:63
subst_constraint_action::action::rows
int * rows
Definition: CoinPresolveSubst.hpp:48
CoinPresolveMatrix
Augments CoinPrePostsolveMatrix with information about the problem that is only needed during presolv...
Definition: CoinPresolveMatrix.hpp:836
subst_constraint_action::action::costsx
const double * costsx
Definition: CoinPresolveSubst.hpp:54
CoinBigIndex
int CoinBigIndex
Definition: Coin_C_defines.h:105
subst_constraint_action::action::rlos
double * rlos
Definition: CoinPresolveSubst.hpp:44