-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathCbcBranchUser.cpp
446 lines (422 loc) · 13.9 KB
/
CbcBranchUser.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
// Copyright (C) 2002, International Business Machines
// Corporation and others. All Rights Reserved.
// This code is licensed under the terms of the Eclipse Public License (EPL).
#include <cassert>
#include <cmath>
#include <cfloat>
#include "CoinPragma.hpp"
#include "OsiSolverInterface.hpp"
#include "CbcModel.hpp"
#include "CbcMessage.hpp"
#include "CbcBranchUser.hpp"
#include "CoinSort.hpp"
// Default Constructor // Default Constructor
CbcBranchUserDecision::CbcBranchUserDecision()
: CbcBranchDecision()
{
}
// Copy constructor
CbcBranchUserDecision::CbcBranchUserDecision(
const CbcBranchUserDecision &rhs)
: CbcBranchDecision(rhs)
{
}
CbcBranchUserDecision::~CbcBranchUserDecision()
{
}
// Clone
CbcBranchDecision *
CbcBranchUserDecision::clone() const
{
return new CbcBranchUserDecision(*this);
}
// Initialize i.e. before start of choosing at a node
void CbcBranchUserDecision::initialize(CbcModel *model)
{
}
/* Returns nonzero if branching on first object is "better" than on
second (if second NULL first wins). User can play with decision object.
This is only used after strong branching. The initial selection
is done by infeasibility() for each CbcObject
return code +1 for up branch preferred, -1 for down
*/
int CbcBranchUserDecision::betterBranch(CbcBranchingObject *thisOne,
CbcBranchingObject *bestSoFar,
double changeUp, int numberInfeasibilitiesUp,
double changeDown, int numberInfeasibilitiesDown)
{
printf("Now obsolete CbcBranchUserDecision::betterBranch\n");
abort();
return 0;
}
/* Compare N branching objects. Return index of best
and sets way of branching in chosen object.
This routine is used only after strong branching.
This is reccommended version as it can be more sophisticated
*/
int CbcBranchUserDecision::bestBranch(CbcBranchingObject **objects, int numberObjects,
int numberUnsatisfied,
double *changeUp, int *numberInfeasibilitiesUp,
double *changeDown, int *numberInfeasibilitiesDown,
double objectiveValue)
{
int bestWay = 0;
int whichObject = -1;
if (numberObjects) {
CbcModel *model = objects[0]->model();
// at continuous
//double continuousObjective = model->getContinuousObjective();
//int continuousInfeasibilities = model->getContinuousInfeasibilities();
// average cost to get rid of infeasibility
//double averageCostPerInfeasibility =
//(objectiveValue-continuousObjective)/
//(double) (abs(continuousInfeasibilities-numberUnsatisfied)+1);
/* beforeSolution is :
0 - before any solution
n - n heuristic solutions but no branched one
-1 - branched solution found
*/
int numberSolutions = model->getSolutionCount();
double cutoff = model->getCutoff();
int method = 0;
int i;
if (numberSolutions) {
int numberHeuristic = model->getNumberHeuristicSolutions();
if (numberHeuristic < numberSolutions) {
method = 1;
} else {
method = 2;
// look further
for (i = 0; i < numberObjects; i++) {
int numberNext = numberInfeasibilitiesUp[i];
if (numberNext < numberUnsatisfied) {
int numberUp = numberUnsatisfied - numberInfeasibilitiesUp[i];
double perUnsatisfied = changeUp[i] / (double)numberUp;
double estimatedObjective = objectiveValue + numberUnsatisfied * perUnsatisfied;
if (estimatedObjective < cutoff)
method = 3;
}
numberNext = numberInfeasibilitiesDown[i];
if (numberNext < numberUnsatisfied) {
int numberDown = numberUnsatisfied - numberInfeasibilitiesDown[i];
double perUnsatisfied = changeDown[i] / (double)numberDown;
double estimatedObjective = objectiveValue + numberUnsatisfied * perUnsatisfied;
if (estimatedObjective < cutoff)
method = 3;
}
}
}
method = 2;
} else {
method = 0;
}
// Uncomment next to force method 4
//method=4;
/* Methods :
0 - fewest infeasibilities
1 - largest min change in objective
2 - as 1 but use sum of changes if min close
3 - predicted best solution
4 - take cheapest up branch if infeasibilities same
*/
int bestNumber = COIN_INT_MAX;
double bestCriterion = -1.0e50;
double alternativeCriterion = -1.0;
double bestEstimate = 1.0e100;
switch (method) {
case 0:
// could add in depth as well
for (i = 0; i < numberObjects; i++) {
int thisNumber = std::min(numberInfeasibilitiesUp[i], numberInfeasibilitiesDown[i]);
if (thisNumber <= bestNumber) {
int betterWay = 0;
if (numberInfeasibilitiesUp[i] < numberInfeasibilitiesDown[i]) {
if (numberInfeasibilitiesUp[i] < bestNumber) {
betterWay = 1;
} else {
if (changeUp[i] < bestCriterion)
betterWay = 1;
}
} else if (numberInfeasibilitiesUp[i] > numberInfeasibilitiesDown[i]) {
if (numberInfeasibilitiesDown[i] < bestNumber) {
betterWay = -1;
} else {
if (changeDown[i] < bestCriterion)
betterWay = -1;
}
} else {
// up and down have same number
bool better = false;
if (numberInfeasibilitiesUp[i] < bestNumber) {
better = true;
} else if (numberInfeasibilitiesUp[i] == bestNumber) {
if (std::min(changeUp[i], changeDown[i]) < bestCriterion)
better = true;
;
}
if (better) {
// see which way
if (changeUp[i] <= changeDown[i])
betterWay = 1;
else
betterWay = -1;
}
}
if (betterWay) {
bestCriterion = std::min(changeUp[i], changeDown[i]);
bestNumber = thisNumber;
whichObject = i;
bestWay = betterWay;
}
}
}
break;
case 1:
for (i = 0; i < numberObjects; i++) {
int betterWay = 0;
if (changeUp[i] <= changeDown[i]) {
if (changeUp[i] > bestCriterion)
betterWay = 1;
} else {
if (changeDown[i] > bestCriterion)
betterWay = -1;
}
if (betterWay) {
bestCriterion = std::min(changeUp[i], changeDown[i]);
whichObject = i;
bestWay = betterWay;
}
}
break;
case 2:
for (i = 0; i < numberObjects; i++) {
double change = std::min(changeUp[i], changeDown[i]);
double sum = changeUp[i] + changeDown[i];
bool take = false;
if (change > 1.1 * bestCriterion)
take = true;
else if (change > 0.9 * bestCriterion && sum + change > bestCriterion + alternativeCriterion)
take = true;
if (take) {
if (changeUp[i] <= changeDown[i]) {
if (changeUp[i] > bestCriterion)
bestWay = 1;
} else {
if (changeDown[i] > bestCriterion)
bestWay = -1;
}
bestCriterion = change;
alternativeCriterion = sum;
whichObject = i;
}
}
break;
case 3:
for (i = 0; i < numberObjects; i++) {
int numberNext = numberInfeasibilitiesUp[i];
if (numberNext < numberUnsatisfied) {
int numberUp = numberUnsatisfied - numberInfeasibilitiesUp[i];
double perUnsatisfied = changeUp[i] / (double)numberUp;
double estimatedObjective = objectiveValue + numberUnsatisfied * perUnsatisfied;
if (estimatedObjective < bestEstimate) {
bestEstimate = estimatedObjective;
bestWay = 1;
whichObject = i;
}
}
numberNext = numberInfeasibilitiesDown[i];
if (numberNext < numberUnsatisfied) {
int numberDown = numberUnsatisfied - numberInfeasibilitiesDown[i];
double perUnsatisfied = changeDown[i] / (double)numberDown;
double estimatedObjective = objectiveValue + numberUnsatisfied * perUnsatisfied;
if (estimatedObjective < bestEstimate) {
bestEstimate = estimatedObjective;
bestWay = -1;
whichObject = i;
}
}
}
break;
case 4:
// if number infeas same then cheapest up
// first get best number or when going down
// now choose smallest change up amongst equal number infeas
for (i = 0; i < numberObjects; i++) {
int thisNumber = std::min(numberInfeasibilitiesUp[i], numberInfeasibilitiesDown[i]);
if (thisNumber <= bestNumber) {
int betterWay = 0;
if (numberInfeasibilitiesUp[i] < numberInfeasibilitiesDown[i]) {
if (numberInfeasibilitiesUp[i] < bestNumber) {
betterWay = 1;
} else {
if (changeUp[i] < bestCriterion)
betterWay = 1;
}
} else if (numberInfeasibilitiesUp[i] > numberInfeasibilitiesDown[i]) {
if (numberInfeasibilitiesDown[i] < bestNumber) {
betterWay = -1;
} else {
if (changeDown[i] < bestCriterion)
betterWay = -1;
}
} else {
// up and down have same number
bool better = false;
if (numberInfeasibilitiesUp[i] < bestNumber) {
better = true;
} else if (numberInfeasibilitiesUp[i] == bestNumber) {
if (std::min(changeUp[i], changeDown[i]) < bestCriterion)
better = true;
;
}
if (better) {
// see which way
if (changeUp[i] <= changeDown[i])
betterWay = 1;
else
betterWay = -1;
}
}
if (betterWay) {
bestCriterion = std::min(changeUp[i], changeDown[i]);
bestNumber = thisNumber;
whichObject = i;
bestWay = betterWay;
}
}
}
bestCriterion = 1.0e50;
for (i = 0; i < numberObjects; i++) {
int thisNumber = numberInfeasibilitiesUp[i];
if (thisNumber == bestNumber && changeUp) {
if (changeUp[i] < bestCriterion) {
bestCriterion = changeUp[i];
whichObject = i;
bestWay = 1;
}
}
}
break;
}
// set way in best
if (whichObject >= 0)
objects[whichObject]->way(bestWay);
}
return whichObject;
}
/** Default Constructor
Equivalent to an unspecified binary variable.
*/
CbcSimpleIntegerFixed::CbcSimpleIntegerFixed()
: CbcSimpleInteger()
{
}
/** Useful constructor
Loads actual upper & lower bounds for the specified variable.
*/
CbcSimpleIntegerFixed::CbcSimpleIntegerFixed(CbcModel *model,
int iColumn, double breakEven)
: CbcSimpleInteger(model, iColumn, breakEven)
{
}
// Constructor from simple
CbcSimpleIntegerFixed::CbcSimpleIntegerFixed(const CbcSimpleInteger &rhs)
: CbcSimpleInteger(rhs)
{
}
// Copy constructor
CbcSimpleIntegerFixed::CbcSimpleIntegerFixed(const CbcSimpleIntegerFixed &rhs)
: CbcSimpleInteger(rhs)
{
}
// Clone
CbcObject *
CbcSimpleIntegerFixed::clone() const
{
return new CbcSimpleIntegerFixed(*this);
}
// Assignment operator
CbcSimpleIntegerFixed &
CbcSimpleIntegerFixed::operator=(const CbcSimpleIntegerFixed &rhs)
{
if (this != &rhs) {
CbcSimpleInteger::operator=(rhs);
}
return *this;
}
// Destructor
CbcSimpleIntegerFixed::~CbcSimpleIntegerFixed()
{
}
// Infeasibility - large is 0.5
double
CbcSimpleIntegerFixed::infeasibility(int &preferredWay) const
{
OsiSolverInterface *solver = model_->solver();
const double *solution = model_->testSolution();
const double *lower = solver->getColLower();
const double *upper = solver->getColUpper();
double value = solution[columnNumber_];
value = std::max(value, lower[columnNumber_]);
value = std::min(value, upper[columnNumber_]);
/*printf("%d %g %g %g %g\n",columnNumber_,value,lower[columnNumber_],
solution[columnNumber_],upper[columnNumber_]);*/
double nearest = floor(value + (1.0 - breakEven_));
assert(breakEven_ > 0.0 && breakEven_ < 1.0);
double integerTolerance = model_->getDblParam(CbcModel::CbcIntegerTolerance);
if (nearest > value)
preferredWay = 1;
else
preferredWay = -1;
if (preferredWay_)
preferredWay = preferredWay_;
double weight = fabs(value - nearest);
// normalize so weight is 0.5 at break even
if (nearest < value)
weight = (0.5 / breakEven_) * weight;
else
weight = (0.5 / (1.0 - breakEven_)) * weight;
if (fabs(value - nearest) <= integerTolerance) {
if (upper[columnNumber_] == lower[columnNumber_])
return 0.0;
else
return 1.0e-5;
} else {
return weight;
}
}
// Creates a branching object
CbcBranchingObject *
CbcSimpleIntegerFixed::createBranch(OsiSolverInterface *solver,
const OsiBranchingInformation *info, int way)
{
const double *solution = model_->testSolution();
const double *lower = solver->getColLower();
const double *upper = solver->getColUpper();
double value = solution[columnNumber_];
value = std::max(value, lower[columnNumber_]);
value = std::min(value, upper[columnNumber_]);
assert(upper[columnNumber_] > lower[columnNumber_]);
if (!model_->hotstartSolution()) {
double nearest = floor(value + 0.5);
double integerTolerance = model_->getDblParam(CbcModel::CbcIntegerTolerance);
if (fabs(value - nearest) < integerTolerance) {
// adjust value
if (nearest != upper[columnNumber_])
value = nearest + 2.0 * integerTolerance;
else
value = nearest - 2.0 * integerTolerance;
}
} else {
const double *hotstartSolution = model_->hotstartSolution();
double targetValue = hotstartSolution[columnNumber_];
if (way > 0)
value = targetValue - 0.1;
else
value = targetValue + 0.1;
}
CbcBranchingObject *branch = new CbcIntegerBranchingObject(model_, columnNumber_, way,
value);
branch->setOriginalObject(this);
return branch;
}