Changeset 821:072ec8120958 in lemon-main
- Timestamp:
- 11/13/09 00:39:28 (15 years ago)
- Branch:
- default
- Phase:
- public
- Rebase:
- 63666432363933386438383538323961626233656333396265363765343030653336623534326538
- Location:
- lemon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/capacity_scaling.h
r813 r821 682 682 // Initialize the algorithm 683 683 ProblemType init() { 684 if (_node_num == 0) return INFEASIBLE;684 if (_node_num <= 1) return INFEASIBLE; 685 685 686 686 // Check the sum of supply values -
lemon/cost_scaling.h
r820 r821 713 713 // Initialize the algorithm 714 714 ProblemType init() { 715 if (_res_node_num == 0) return INFEASIBLE;715 if (_res_node_num <= 1) return INFEASIBLE; 716 716 717 717 // Check the sum of supply values
Note: See TracChangeset
for help on using the changeset viewer.