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

« back to all changes in this revision

Viewing changes to src/main/java/weka/classifiers/trees/j48/NBTreeClassifierTree.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:
34
34
 * classification.
35
35
 *
36
36
 * @author Mark Hall (mhall@cs.waikato.ac.nz)
37
 
 * @version $Revision: 1.6 $
 
37
 * @version $Revision: 5535 $
38
38
 */
39
39
public class NBTreeClassifierTree
40
40
  extends ClassifierTree {
53
53
   */
54
54
  public Capabilities getCapabilities() {
55
55
    Capabilities result = super.getCapabilities();
 
56
    result.disableAll();
56
57
 
57
58
    // attributes
58
59
    result.enable(Capability.NOMINAL_ATTRIBUTES);
274
275
   * @return            the revision
275
276
   */
276
277
  public String getRevision() {
277
 
    return RevisionUtils.extract("$Revision: 1.6 $");
 
278
    return RevisionUtils.extract("$Revision: 5535 $");
278
279
  }
279
280
}