コード例 #1
0
 /**
  * Copy the output from the network to another object.
  *
  * @param output The target object for the output from the network.
  */
 private void getOutput(final BiPolarNeuralData output) {
   for (int i = 0; i < this.layerF2.getNeuronCount(); i++) {
     output.setData(i, this.outputF2.getBoolean(i));
   }
 }