~ubuntu-branches/ubuntu/raring/weka/raring

« back to all changes in this revision

Viewing changes to weka/attributeSelection/SVMAttributeEval.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:
27
27
import weka.core.Instances;
28
28
import weka.core.Option;
29
29
import weka.core.OptionHandler;
 
30
import weka.core.RevisionUtils;
30
31
import weka.core.SelectedTag;
31
32
import weka.core.TechnicalInformation;
32
33
import weka.core.TechnicalInformationHandler;
117
118
 * @author Eibe Frank (eibe@cs.waikato.ac.nz)
118
119
 * @author Mark Hall (mhall@cs.waikato.ac.nz)
119
120
 * @author Kieran Holland
120
 
 * @version $Revision: 1.26 $
 
121
 * @version $Revision: 1.28 $
121
122
 */
122
123
public class SVMAttributeEval 
123
 
  extends AttributeEvaluator
124
 
  implements OptionHandler, TechnicalInformationHandler {
 
124
  extends ASEvaluation
 
125
  implements AttributeEvaluator, 
 
126
             OptionHandler, 
 
127
             TechnicalInformationHandler {
125
128
  
126
129
  /** for serialization */
127
130
  static final long serialVersionUID = -6489975709033967447L;
813
816
    text.append("\n");
814
817
    return text.toString();
815
818
  }
 
819
  
 
820
  /**
 
821
   * Returns the revision string.
 
822
   * 
 
823
   * @return            the revision
 
824
   */
 
825
  public String getRevision() {
 
826
    return RevisionUtils.extract("$Revision: 1.28 $");
 
827
  }
816
828
 
817
829
  /**
818
830
   * Main method for testing this class.