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

« back to all changes in this revision

Viewing changes to weka/classifiers/meta/RandomSubSpace.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:
29
29
import weka.core.Instances;
30
30
import weka.core.Option;
31
31
import weka.core.Randomizable;
 
32
import weka.core.RevisionUtils;
32
33
import weka.core.TechnicalInformation;
33
34
import weka.core.TechnicalInformationHandler;
34
35
import weka.core.Utils;
124
125
 *
125
126
 * @author Bernhard Pfahringer (bernhard@cs.waikato.ac.nz)
126
127
 * @author Peter Reutemann (fracpete@cs.waikato.ac.nz)
127
 
 * @version $Revision: 1.3 $
 
128
 * @version $Revision: 1.4 $
128
129
 */
129
130
public class RandomSubSpace
130
131
  extends RandomizableIteratedSingleClassifierEnhancer 
509
510
 
510
511
    return text.toString();
511
512
  }
 
513
  
 
514
  /**
 
515
   * Returns the revision string.
 
516
   * 
 
517
   * @return            the revision
 
518
   */
 
519
  public String getRevision() {
 
520
    return RevisionUtils.extract("$Revision: 1.4 $");
 
521
  }
512
522
 
513
523
  /**
514
524
   * Main method for testing this class.