You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2015/04/11 23:37:42 UTC

[math] Added missing serial version ids.

Repository: commons-math
Updated Branches:
  refs/heads/master b6488f086 -> 4aa1d98ad


Added missing serial version ids.


Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/4aa1d98a
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/4aa1d98a
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/4aa1d98a

Branch: refs/heads/master
Commit: 4aa1d98adf4520f62ac895a0aa76607300779348
Parents: b6488f0
Author: Phil Steitz <ph...@gmail.com>
Authored: Sat Apr 11 14:34:08 2015 -0700
Committer: Phil Steitz <ph...@gmail.com>
Committed: Sat Apr 11 14:34:08 2015 -0700

----------------------------------------------------------------------
 .../org/apache/commons/math4/ml/neuralnet/oned/NeuronString.java   | 2 ++
 .../apache/commons/math4/ml/neuralnet/twod/NeuronSquareMesh2D.java | 2 ++
 2 files changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/4aa1d98a/src/main/java/org/apache/commons/math4/ml/neuralnet/oned/NeuronString.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/math4/ml/neuralnet/oned/NeuronString.java b/src/main/java/org/apache/commons/math4/ml/neuralnet/oned/NeuronString.java
index 94aff98..ba454ca 100644
--- a/src/main/java/org/apache/commons/math4/ml/neuralnet/oned/NeuronString.java
+++ b/src/main/java/org/apache/commons/math4/ml/neuralnet/oned/NeuronString.java
@@ -32,6 +32,8 @@ import org.apache.commons.math4.ml.neuralnet.Network;
  * @since 3.3
  */
 public class NeuronString implements Serializable {
+    /** Serial version ID */
+    private static final long serialVersionUID = 1L;
     /** Underlying network. */
     private final Network network;
     /** Number of neurons. */

http://git-wip-us.apache.org/repos/asf/commons-math/blob/4aa1d98a/src/main/java/org/apache/commons/math4/ml/neuralnet/twod/NeuronSquareMesh2D.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/math4/ml/neuralnet/twod/NeuronSquareMesh2D.java b/src/main/java/org/apache/commons/math4/ml/neuralnet/twod/NeuronSquareMesh2D.java
index a6f4315..3463b75 100644
--- a/src/main/java/org/apache/commons/math4/ml/neuralnet/twod/NeuronSquareMesh2D.java
+++ b/src/main/java/org/apache/commons/math4/ml/neuralnet/twod/NeuronSquareMesh2D.java
@@ -42,6 +42,8 @@ import org.apache.commons.math4.ml.neuralnet.SquareNeighbourhood;
  * @since 3.3
  */
 public class NeuronSquareMesh2D implements Serializable {
+    /** Serial version ID */
+    private static final long serialVersionUID = 1L;
     /** Underlying network. */
     private final Network network;
     /** Number of rows. */