Changeset 1813 for trunk/Cbc/src/CbcModel.cpp
- Timestamp:
- Nov 22, 2012 2:00:22 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Cbc/src/CbcModel.cpp
r1802 r1813 4536 4536 maximumWhich_(1000), 4537 4537 maximumRows_(0), 4538 randomSeed_(-1), 4538 4539 currentDepth_(0), 4539 4540 whichGenerator_(NULL), … … 4693 4694 maximumWhich_(1000), 4694 4695 maximumRows_(0), 4696 randomSeed_(-1), 4695 4697 currentDepth_(0), 4696 4698 whichGenerator_(NULL), … … 4937 4939 maximumWhich_(rhs.maximumWhich_), 4938 4940 maximumRows_(0), 4941 randomSeed_(rhs.randomSeed_), 4939 4942 currentDepth_(0), 4940 4943 whichGenerator_(NULL), … … 5281 5284 maximumCutPassesAtRoot_ = rhs.maximumCutPassesAtRoot_; 5282 5285 maximumCutPasses_ = rhs.maximumCutPasses_; 5286 randomSeed_ = rhs.randomSeed_; 5283 5287 preferredWay_ = rhs.preferredWay_; 5284 5288 currentPassNumber_ = rhs.currentPassNumber_; … … 5687 5691 maximumCutPassesAtRoot_ = rhs.maximumCutPassesAtRoot_; 5688 5692 maximumCutPasses_ = rhs.maximumCutPasses_; 5693 randomSeed_ = rhs.randomSeed_; 5689 5694 preferredWay_ = rhs.preferredWay_; 5690 5695 resolveAfterTakeOffCuts_ = rhs.resolveAfterTakeOffCuts_; … … 5981 5986 heuristic_[where]->setHeuristicName(name) ; 5982 5987 heuristic_[where]->setSeed(987654321 + where); 5988 if (randomSeed_!=-1) 5989 heuristic_[where]->setSeed(randomSeed_); 5983 5990 numberHeuristics_++ ; 5984 5991 }
Note: See TracChangeset
for help on using the changeset viewer.