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

« back to all changes in this revision

Viewing changes to weka/estimators/DDConditionalEstimator.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:
22
22
 
23
23
package weka.estimators;
24
24
 
 
25
import weka.core.RevisionUtils;
 
26
 
25
27
 
26
28
/** 
27
29
 * Conditional probability estimator for a discrete domain conditional upon
28
30
 * a discrete domain.
29
31
 *
30
32
 * @author Len Trigg (trigg@cs.waikato.ac.nz)
31
 
 * @version $Revision: 1.7 $
 
33
 * @version $Revision: 1.8 $
32
34
 */
33
35
public class DDConditionalEstimator implements ConditionalEstimator {
34
36
 
96
98
    }
97
99
    return result;
98
100
  }
 
101
  
 
102
  /**
 
103
   * Returns the revision string.
 
104
   * 
 
105
   * @return            the revision
 
106
   */
 
107
  public String getRevision() {
 
108
    return RevisionUtils.extract("$Revision: 1.8 $");
 
109
  }
99
110
 
100
111
  /**
101
112
   * Main method for testing this class.
141
152
    }
142
153
  }
143
154
}
144
 
 
145
 
 
146
 
 
147
 
 
148
 
 
149
 
 
150
 
 
151