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

« back to all changes in this revision

Viewing changes to weka/classifiers/bayes/net/search/fixed/FromFile.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.classifiers.bayes.net.search.SearchAlgorithm;
28
28
import weka.core.Instances;
29
29
import weka.core.Option;
 
30
import weka.core.RevisionUtils;
30
31
import weka.core.Utils;
31
32
 
32
33
import java.util.Enumeration;
48
49
 <!-- options-end -->
49
50
 * 
50
51
 * @author Remco Bouckaert
51
 
 * @version $Revision: 1.7 $
 
52
 * @version $Revision: 1.8 $
52
53
 */
53
54
public class FromFile 
54
55
        extends SearchAlgorithm {
179
180
          return options;
180
181
        }
181
182
 
 
183
        /**
 
184
         * Returns the revision string.
 
185
         * 
 
186
         * @return              the revision
 
187
         */
 
188
        public String getRevision() {
 
189
          return RevisionUtils.extract("$Revision: 1.8 $");
 
190
        }
 
191
 
182
192
} // class FromFile