~ubuntu-branches/ubuntu/oneiric/weka/oneiric

« back to all changes in this revision

Viewing changes to weka/classifiers/trees/RandomForest.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner, Soeren Sonnenburg, Torsten Werner
  • Date: 2008-08-10 21:27:05 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080810212705-tr8etpnkdx2ziktp
Tags: 3.5.8-1
[ Soeren Sonnenburg ]
* Bump Standards Version to 3.8.0.
* Remove references to non-free Java in debian/copyright.

[ Torsten Werner ]
* new upstream release
* Switch to openjdk-6.
* Move package to main.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
import weka.core.Option;
32
32
import weka.core.OptionHandler;
33
33
import weka.core.Randomizable;
 
34
import weka.core.RevisionUtils;
34
35
import weka.core.TechnicalInformation;
35
36
import weka.core.TechnicalInformationHandler;
36
37
import weka.core.Utils;
91
92
 <!-- options-end -->
92
93
 *
93
94
 * @author Richard Kirkby (rkirkby@cs.waikato.ac.nz)
94
 
 * @version $Revision: 1.12 $
 
95
 * @version $Revision: 1.13 $
95
96
 */
96
97
public class RandomForest 
97
98
  extends Classifier 
515
516
           + (getMaxDepth() > 0 ? ("Max. depth of trees: " + getMaxDepth() + "\n") : (""))
516
517
           + "\n";
517
518
  }
 
519
  
 
520
  /**
 
521
   * Returns the revision string.
 
522
   * 
 
523
   * @return            the revision
 
524
   */
 
525
  public String getRevision() {
 
526
    return RevisionUtils.extract("$Revision: 1.13 $");
 
527
  }
518
528
 
519
529
  /**
520
530
   * Main method for this class.