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

« back to all changes in this revision

Viewing changes to weka/filters/unsupervised/attribute/RandomProjection.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.OptionHandler;
 
32
import weka.core.RevisionUtils;
32
33
import weka.core.SelectedTag;
33
34
import weka.core.Tag;
34
35
import weka.core.TechnicalInformation;
102
103
 <!-- options-end -->
103
104
 *
104
105
 * @author Ashraf M. Kibriya (amk14@cs.waikato.ac.nz) 
105
 
 * @version $Revision: 1.10 $ [1.0 - 22 July 2003 - Initial version (Ashraf M. Kibriya)]
 
106
 * @version $Revision: 1.11 $ [1.0 - 22 July 2003 - Initial version (Ashraf M. Kibriya)]
106
107
 */
107
108
public class RandomProjection 
108
109
  extends Filter 
882
883
      }
883
884
      return -1;
884
885
  }  
 
886
  
 
887
  /**
 
888
   * Returns the revision string.
 
889
   * 
 
890
   * @return            the revision
 
891
   */
 
892
  public String getRevision() {
 
893
    return RevisionUtils.extract("$Revision: 1.11 $");
 
894
  }
885
895
 
886
896
  /**
887
897
   * Main method for testing this class.