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

« back to all changes in this revision

Viewing changes to weka/classifiers/bayes/net/search/local/TabuSearch.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:
25
25
import weka.classifiers.bayes.BayesNet;
26
26
import weka.core.Instances;
27
27
import weka.core.Option;
 
28
import weka.core.RevisionUtils;
28
29
import weka.core.TechnicalInformation;
29
30
import weka.core.TechnicalInformation.Type;
30
31
import weka.core.TechnicalInformation.Field;
96
97
 <!-- options-end -->
97
98
 * 
98
99
 * @author Remco Bouckaert (rrb@xm.co.nz)
99
 
 * @version $Revision: 1.4 $
 
100
 * @version $Revision: 1.5 $
100
101
 */
101
102
public class TabuSearch 
102
103
    extends HillClimber
402
403
          return "Sets the length of the tabu list.";
403
404
        } // tabuListTipText
404
405
 
 
406
        /**
 
407
         * Returns the revision string.
 
408
         * 
 
409
         * @return              the revision
 
410
         */
 
411
        public String getRevision() {
 
412
          return RevisionUtils.extract("$Revision: 1.5 $");
 
413
        }
 
414
 
405
415
} // TabuSearch