Changeset 1738
- Timestamp:
- Jun 12, 2011 10:27:55 AM (8 years ago)
- Location:
- trunk/Clp/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Clp/src/CbcOrClpParam.cpp
r1732 r1738 3242 3242 parameters[numberParameters++] = 3243 3243 CbcOrClpParam("trust!PseudoCosts", "Number of branches before we trust pseudocosts", 3244 -3, 2000000 , CBC_PARAM_INT_NUMBERBEFORE);3244 -3, 2000000000, CBC_PARAM_INT_NUMBERBEFORE); 3245 3245 parameters[numberParameters-1].setLonghelp 3246 3246 ( -
trunk/Clp/src/ClpSimplex.cpp
r1732 r1738 10613 10613 } 10614 10614 #endif 10615 double objectiveValue=0.0; 10616 if (node->sequence() < 0) { 10617 objectiveValue = doubleCheck(); 10618 node->gutsOfConstructor(this, info, 1, depth); 10619 } 10615 10620 if (node->sequence() < 0) { 10616 10621 // solution 10617 double objectiveValue = doubleCheck();10622 //double objectiveValue = doubleCheck(); 10618 10623 if (objectiveValue < bestObjective) { 10619 10624 #ifdef COIN_DEVELOP … … 10628 10633 << CoinMessageEol; 10629 10634 #endif 10630 ClpNode node2(this, info, depth);10631 assert (node2.sequence() < 0);10632 10635 // later then lower_ not columnLower_ (and total?) 10633 10636 delete [] bestLower; -
trunk/Clp/src/ClpSimplexOther.cpp
r1722 r1738 120 120 } 121 121 scale2 = 1.0 / sqrt(scale2); 122 valueIncrease[i] = scale2;122 //valueIncrease[i] = scale2; 123 123 if (sequenceIncrease >= 0) { 124 124 double djValue = dj_[sequenceIncrease]; -
trunk/Clp/src/ClpSimplexPrimal.cpp
r1729 r1738 1418 1418 // carry on 1419 1419 problemStatus_ = -1; 1420 if(type == 3 && problemStatus_ != -5) {1420 if(type == 3 && !ifValuesPass) { 1421 1421 //bool unflagged = 1422 1422 unflag();
Note: See TracChangeset
for help on using the changeset viewer.