Changeset 938:a07b6b27fe69 in lemon-main
- Timestamp:
 - 03/15/11 19:54:11 (15 years ago)
 - Branch:
 - default
 - Phase:
 - public
 - File:
 - 
          
- 1 edited
 
- 
          lemon/cost_scaling.h (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
lemon/cost_scaling.h
r937 r938 488 488 /// \param method The internal method that will be used in the 489 489 /// algorithm. For more information, see \ref Method. 490 /// \param factor The cost scaling factor. It must be larger than one.490 /// \param factor The cost scaling factor. It must be at least two. 491 491 /// 492 492 /// \return \c INFEASIBLE if no feasible flow exists, … … 502 502 /// \see ProblemType, Method 503 503 /// \see resetParams(), reset() 504 ProblemType run(Method method = PARTIAL_AUGMENT, int factor = 8) { 504 ProblemType run(Method method = PARTIAL_AUGMENT, int factor = 16) { 505 LEMON_ASSERT(factor >= 2, "The scaling factor must be at least 2"); 505 506 _alpha = factor; 506 507 ProblemType pt = init();  
Note: See TracChangeset
          for help on using the changeset viewer.
      
