Changeset 3353:a8514885fb7c in orange


Ignore:
Timestamp:
03/01/07 17:16:35 (6 years ago)
Author:
janezd <janez.demsar@…>
Branch:
default
Convert:
581822a0ce74cf7488a14549753b68a8d4b33d0d
Message:
  • in distributePoints, if nPoints is below 0, FACTOR method is used (used to be used only if the method was MINIMAL)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/include/stat.hpp

    r3349 r3353  
    14791479{ typedef typename map<T, U>::const_iterator mapiterator; 
    14801480 
    1481   if ((method == DISTRIBUTE_MINIMAL) && (nPoints<0)) { 
     1481  if (nPoints<0) { 
    14821482    nPoints = -nPoints; 
    14831483    method = DISTRIBUTE_FACTOR; 
Note: See TracChangeset for help on using the changeset viewer.