~ubuntu-branches/ubuntu/wily/weka/wily

« back to all changes in this revision

Viewing changes to src/main/java/weka/classifiers/functions/SimpleLogistic.java

  • Committer: Bazaar Package Importer
  • Author(s): tony mancill
  • Date: 2011-08-05 22:40:50 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110805224050-a01vkwst9epdi4sw
Tags: 3.6.5-1
* Team upload.
* New upstream version (Closes: #632082, #598400)
* Bump Standards-Version to 3.9.2 (no changes required).
* Freshen jar.patch; remove java_cup.patch (incorporated upstream)
* Add README.source to document process of obtaining .png resources.
* Add myself to Uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
 *
117
117
 * @author Niels Landwehr 
118
118
 * @author Marc Sumner 
119
 
 * @version $Revision: 1.13 $
 
119
 * @version $Revision: 5523 $
120
120
 */
121
121
public class SimpleLogistic 
122
122
  extends Classifier 
191
191
     */
192
192
    public Capabilities getCapabilities() {
193
193
      Capabilities result = super.getCapabilities();
 
194
      result.disableAll();
194
195
 
195
196
      // attributes
196
197
      result.enable(Capability.NOMINAL_ATTRIBUTES);
729
730
     * @return          the revision
730
731
     */
731
732
    public String getRevision() {
732
 
      return RevisionUtils.extract("$Revision: 1.13 $");
 
733
      return RevisionUtils.extract("$Revision: 5523 $");
733
734
    }
734
735
 
735
736
    /**