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

« back to all changes in this revision

Viewing changes to weka/classifiers/functions/neural/NeuralNode.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:
21
21
 
22
22
package weka.classifiers.functions.neural;
23
23
 
 
24
import weka.core.RevisionUtils;
 
25
 
24
26
import java.util.Random;
25
27
 
26
28
/**
27
29
 * This class is used to represent a node in the neuralnet.
28
30
 * 
29
31
 * @author Malcolm Ware (mfw4@cs.waikato.ac.nz)
30
 
 * @version $Revision: 1.7 $
 
32
 * @version $Revision: 1.8 $
31
33
 */
32
34
public class NeuralNode
33
35
  extends NeuralConnection {
289
291
    m_changeInWeights[0] = temp2;
290
292
    
291
293
  }  
292
 
 
293
294
  
 
295
  /**
 
296
   * Returns the revision string.
 
297
   * 
 
298
   * @return            the revision
 
299
   */
 
300
  public String getRevision() {
 
301
    return RevisionUtils.extract("$Revision: 1.8 $");
 
302
  }
294
303
}
295
 
 
296
 
 
297
 
 
298
 
 
299
 
 
300
 
 
301
 
 
302
 
 
303
 
 
304
 
 
305
 
 
306
 
 
307