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

« back to all changes in this revision

Viewing changes to weka/experiment/PairedCorrectedTTester.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:
28
28
import weka.core.Instance;
29
29
import weka.core.Instances;
30
30
import weka.core.Option;
 
31
import weka.core.RevisionUtils;
31
32
import weka.core.Utils;
32
33
import weka.core.TechnicalInformation;
33
34
import weka.core.TechnicalInformation.Type;
107
108
 <!-- options-end -->
108
109
 *
109
110
 * @author Richard Kirkby (rkirkby@cs.waikato.ac.nz)
110
 
 * @version $Revision: 1.12 $
 
111
 * @version $Revision: 1.13 $
111
112
 */
112
113
public class PairedCorrectedTTester 
113
114
  extends PairedTTester
328
329
  public String getToolTipText() {
329
330
    return "Performs test using corrected resampled t-test statistic (Nadeau and Bengio)";
330
331
  }
 
332
  
 
333
  /**
 
334
   * Returns the revision string.
 
335
   * 
 
336
   * @return            the revision
 
337
   */
 
338
  public String getRevision() {
 
339
    return RevisionUtils.extract("$Revision: 1.13 $");
 
340
  }
331
341
}