~ubuntu-branches/ubuntu/oneiric/weka/oneiric

« back to all changes in this revision

Viewing changes to weka/experiment/Tester.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:
23
23
 
24
24
package weka.experiment;
25
25
 
 
26
import weka.core.Instance;
26
27
import weka.core.Instances;
27
 
import weka.core.Instance;
28
28
import weka.core.Range;
29
 
import weka.core.Statistics;
30
29
 
31
30
import java.io.Serializable;
32
31
 
34
33
 * Interface for different kinds of Testers in the Experimenter.
35
34
 * 
36
35
 * @author FracPete (fracpete at waikato dot ac dot nz)
37
 
 * @version $Revision: 1.3 $
 
36
 * @version $Revision: 1.4 $
38
37
 */
39
 
public interface Tester extends Serializable {
 
38
public interface Tester
 
39
  extends Serializable {
 
40
  
40
41
  /**
41
42
   * returns the name of the testing algorithm
42
43
   */