Changeset 841:aa8c9008b3de in lemon-main
- Timestamp:
- 02/26/10 23:53:09 (15 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- lemon
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/hartmann_orlin.h
r825 r841 406 406 /// \pre \ref run() or \ref findMinMean() must be called before 407 407 /// using this function. 408 LargeValue cycleLength() const {409 return _best_length;408 Value cycleLength() const { 409 return static_cast<Value>(_best_length); 410 410 } 411 411 -
lemon/howard.h
r825 r841 385 385 /// \pre \ref run() or \ref findMinMean() must be called before 386 386 /// using this function. 387 LargeValue cycleLength() const {388 return _best_length;387 Value cycleLength() const { 388 return static_cast<Value>(_best_length); 389 389 } 390 390 -
lemon/karp.h
r825 r841 393 393 /// \pre \ref run() or \ref findMinMean() must be called before 394 394 /// using this function. 395 LargeValue cycleLength() const {396 return _cycle_length;395 Value cycleLength() const { 396 return static_cast<Value>(_cycle_length); 397 397 } 398 398
Note: See TracChangeset
for help on using the changeset viewer.