forked from coin-or/Clp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathClpConstraint.cpp
79 lines (72 loc) · 2.19 KB
/
ClpConstraint.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* $Id$ */
// Copyright (C) 2007, International Business Machines
// Corporation and others. All Rights Reserved.
// This code is licensed under the terms of the Eclipse Public License (EPL).
#include "CoinPragma.hpp"
#include "ClpSimplex.hpp"
#include "ClpConstraint.hpp"
//#############################################################################
// Constructors / Destructor / Assignment
//#############################################################################
//-------------------------------------------------------------------
// Default Constructor
//-------------------------------------------------------------------
ClpConstraint::ClpConstraint()
: lastGradient_(NULL)
, functionValue_(0.0)
, offset_(0.0)
, type_(-1)
, rowNumber_(-1)
{
}
//-------------------------------------------------------------------
// Copy constructor
//-------------------------------------------------------------------
ClpConstraint::ClpConstraint(const ClpConstraint &source)
: lastGradient_(NULL)
, functionValue_(source.functionValue_)
, offset_(source.offset_)
, type_(source.type_)
, rowNumber_(source.rowNumber_)
{
}
//-------------------------------------------------------------------
// Destructor
//-------------------------------------------------------------------
ClpConstraint::~ClpConstraint()
{
delete[] lastGradient_;
}
//----------------------------------------------------------------
// Assignment operator
//-------------------------------------------------------------------
ClpConstraint &
ClpConstraint::operator=(const ClpConstraint &rhs)
{
if (this != &rhs) {
functionValue_ = rhs.functionValue_;
offset_ = rhs.offset_;
type_ = rhs.type_;
rowNumber_ = rhs.rowNumber_;
delete[] lastGradient_;
lastGradient_ = NULL;
}
return *this;
}
// Constraint function value
double
ClpConstraint::functionValue(const ClpSimplex *model,
const double *solution,
bool useScaling,
bool refresh) const
{
double offset;
double value;
int n = model->numberColumns();
double *grad = new double[n];
gradient(model, solution, grad, value, offset, useScaling, refresh);
delete[] grad;
return value;
}
/* vi: softtabstop=2 shiftwidth=2 expandtab tabstop=2
*/