coin-or / Cgl

Cut Generator Library
Other
24 stars 14 forks source link

Bug in the CglFlowVUB copy constructor #21

Closed svigerske closed 5 years ago

svigerske commented 5 years ago

Issue created by migration from Trac.

Original creator: @rlougee

Original creation time: 2007-11-16 18:21:14

Assignee: somebody

Version: release 0.5.1

In CglFlowCover.hpp

CglFlowVUB(const CglFlowVUB& source) { 

varInd_= source.varInd_; 

upper_ = source.varInd_;  // rlh: the bug

}

The fix is: upper = source.upper;

svigerske commented 5 years ago

Comment by @rlougee created at 2007-11-16 18:21:40

Changing assignee from somebody to @rlougee.

svigerske commented 5 years ago

Comment by @rlougee created at 2007-11-16 18:21:40

Changing status from new to assigned.

svigerske commented 5 years ago

Comment by @rlougee created at 2007-11-16 19:06:06

Resolution: fixed