ClpConstraintLinear.hpp
Go to the documentation of this file.
1 /* $Id: ClpConstraintLinear.hpp 1665 2011-01-04 17:55:54Z lou $ */
2 // Copyright (C) 2007, 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 ClpConstraintLinear_H
7 #define ClpConstraintLinear_H
8 
9 #include "ClpConstraint.hpp"
10 
11 //#############################################################################
12 
18 
19 public:
20 
22 
23 
24 
31  virtual int gradient(const ClpSimplex * model,
32  const double * solution,
33  double * gradient,
34  double & functionValue ,
35  double & offset,
36  bool useScaling = false,
37  bool refresh = true) const ;
39  virtual void resize(int newNumberColumns) ;
41  virtual void deleteSome(int numberToDelete, const int * which) ;
43  virtual void reallyScale(const double * columnScale) ;
47  virtual int markNonlinear(char * which) const ;
51  virtual int markNonzero(char * which) const;
53 
54 
56 
59 
62  const int * column, const double * element);
63 
67 
70 
72  virtual ~ClpConstraintLinear ();
73 
75  virtual ClpConstraint * clone() const;
77 
79  virtual int numberCoefficients() const;
82  inline int numberColumns() const {
83  return numberColumns_;
84  }
86  inline const int * column() const {
87  return column_;
88  }
90  inline const double * coefficient() const {
91  return coefficient_;
92  }
94 
95  //---------------------------------------------------------------------------
96 
97 private:
100  int * column_;
102  double * coefficient_;
108 };
109 
110 #endif
virtual void resize(int newNumberColumns)
Resize constraint.
ClpConstraintLinear & operator=(const ClpConstraintLinear &rhs)
Assignment operator.
virtual int gradient(const ClpSimplex *model, const double *solution, double *gradient, double &functionValue, double &offset, bool useScaling=false, bool refresh=true) const
Fills gradient.
Constraint Abstract Base Class.
double * coefficient_
Coefficients.
int * column_
Coefficients.
const double * coefficient() const
Coefficients.
virtual void reallyScale(const double *columnScale)
Scale constraint.
virtual int numberCoefficients() const
Number of coefficients.
virtual void deleteSome(int numberToDelete, const int *which)
Delete columns in constraint.
const int * column() const
Columns.
virtual int markNonzero(char *which) const
Given a zeroed array sets possible nonzero coefficients to 1.
int numberCoefficients_
Number of coefficients.
This solves LPs using the simplex method.
Definition: ClpSimplex.hpp:70
virtual ClpConstraint * clone() const
Clone.
virtual int markNonlinear(char *which) const
Given a zeroed array sets nonlinear columns to 1.
virtual ~ClpConstraintLinear()
Destructor.
double offset() const
Constraint offset.
Linear Constraint Class.
double functionValue() const
Stored constraint function value.
ClpConstraintLinear()
Default Constructor.
int numberColumns_
Useful to have number of columns about.
int numberColumns() const
Number of columns in linear constraint.