~ubuntu-branches/ubuntu/wily/weka/wily

« back to all changes in this revision

Viewing changes to src/main/java/weka/classifiers/lazy/KStar.java

  • Committer: Bazaar Package Importer
  • Author(s): tony mancill
  • Date: 2011-08-05 22:40:50 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110805224050-a01vkwst9epdi4sw
Tags: 3.6.5-1
* Team upload.
* New upstream version (Closes: #632082, #598400)
* Bump Standards-Version to 3.9.2 (no changes required).
* Freshen jar.patch; remove java_cup.patch (incorporated upstream)
* Add README.source to document process of obtaining .png resources.
* Add myself to Uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
 *
92
92
 * @author Len Trigg (len@reeltwo.com)
93
93
 * @author Abdelaziz Mahoui (am14@cs.waikato.ac.nz) - Java port
94
 
 * @version $Revision: 1.9 $
 
94
 * @version $Revision: 5525 $
95
95
 */
96
96
public class KStar 
97
97
  extends Classifier
190
190
   */
191
191
  public Capabilities getCapabilities() {
192
192
    Capabilities result = super.getCapabilities();
 
193
    result.disableAll();
193
194
 
194
195
    // attributes
195
196
    result.enable(Capability.NOMINAL_ATTRIBUTES);
710
711
   * @return            the revision
711
712
   */
712
713
  public String getRevision() {
713
 
    return RevisionUtils.extract("$Revision: 1.9 $");
 
714
    return RevisionUtils.extract("$Revision: 5525 $");
714
715
  }
715
716
 
716
717
} // class end