We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b01f31 commit 92f92dbCopy full SHA for 92f92db
1 file changed
src/CbcHeuristicDive.cpp
@@ -172,6 +172,9 @@ CbcHeuristicDive::CbcHeuristicDive(const CbcHeuristicDive &rhs)
172
upLocks_ = NULL;
173
priority_ = NULL;
174
}
175
+ collectConflicts_ = rhs.collectConflicts_;
176
+ maxConflictSize_ = rhs.maxConflictSize_;
177
+ minConflictViolation_ = rhs.minConflictViolation_;
178
179
180
// Assignment operator
@@ -206,6 +209,9 @@ CbcHeuristicDive::operator=(const CbcHeuristicDive &rhs)
206
209
207
210
208
211
212
213
214
215
return *this;
216
217
0 commit comments