102103104105106107108
* and Step transfer function. This is the original McCulloch-Pitts * neuron model. */ public Neuron() { this.inputFunction = new InputFunction(); this.transferFunction = new Step(); }