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

« back to all changes in this revision

Viewing changes to weka/attributeSelection/BestFirst.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.Option;
28
28
import weka.core.OptionHandler;
29
29
import weka.core.Range;
 
30
import weka.core.RevisionHandler;
 
31
import weka.core.RevisionUtils;
30
32
import weka.core.SelectedTag;
31
33
import weka.core.Tag;
32
34
import weka.core.Utils;
68
70
 *
69
71
 * @author Mark Hall (mhall@cs.waikato.ac.nz)
70
72
 *         Martin Guetlein (cashing merit of expanded nodes) 
71
 
 * @version $Revision: 1.28 $
 
73
 * @version $Revision: 1.29 $
72
74
 */
73
75
public class BestFirst 
74
76
  extends ASSearch 
83
85
   * @author Mark Hall (mhall@cs.waikato.ac.nz)
84
86
   **/
85
87
  public class Link2 
86
 
    implements Serializable {
 
88
    implements Serializable, RevisionHandler {
87
89
 
88
90
    /** for serialization */
89
91
    static final long serialVersionUID = -8236598311516351420L;
112
114
    public String toString () {
113
115
      return  ("Node: " + m_data.toString() + "  " + m_merit);
114
116
    }
115
 
 
 
117
    
 
118
    /**
 
119
     * Returns the revision string.
 
120
     * 
 
121
     * @return          the revision
 
122
     */
 
123
    public String getRevision() {
 
124
      return RevisionUtils.extract("$Revision: 1.29 $");
 
125
    }
116
126
  }
117
127
 
118
128
 
231
241
      }
232
242
      }
233
243
    }
234
 
 
 
244
    
 
245
    /**
 
246
     * Returns the revision string.
 
247
     * 
 
248
     * @return          the revision
 
249
     */
 
250
    public String getRevision() {
 
251
      return RevisionUtils.extract("$Revision: 1.29 $");
 
252
    }
235
253
  }
236
254
 
237
255
  // member variables
902
920
 
903
921
    return  list;
904
922
  }
905
 
 
 
923
  
 
924
  /**
 
925
   * Returns the revision string.
 
926
   * 
 
927
   * @return            the revision
 
928
   */
 
929
  public String getRevision() {
 
930
    return RevisionUtils.extract("$Revision: 1.29 $");
 
931
  }
906
932
}