Repository: commons-math Updated Branches: refs/heads/MATH_3_X 69b5c8214 -> 537a22428
Tabs. Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/23f469e4 Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/23f469e4 Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/23f469e4 Branch: refs/heads/MATH_3_X Commit: 23f469e4eb85e20bc715baa9479ded8998816af1 Parents: 69b5c82 Author: Gilles <er...@apache.org> Authored: Fri Sep 4 14:06:42 2015 +0200 Committer: Gilles <er...@apache.org> Committed: Fri Sep 4 14:06:42 2015 +0200 ---------------------------------------------------------------------- .../ml/neuralnet/twod/NeuronSquareMesh2DTest.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/23f469e4/src/test/java/org/apache/commons/math3/ml/neuralnet/twod/NeuronSquareMesh2DTest.java ---------------------------------------------------------------------- diff --git a/src/test/java/org/apache/commons/math3/ml/neuralnet/twod/NeuronSquareMesh2DTest.java b/src/test/java/org/apache/commons/math3/ml/neuralnet/twod/NeuronSquareMesh2DTest.java index 1e4d3ea..5799425 100644 --- a/src/test/java/org/apache/commons/math3/ml/neuralnet/twod/NeuronSquareMesh2DTest.java +++ b/src/test/java/org/apache/commons/math3/ml/neuralnet/twod/NeuronSquareMesh2DTest.java @@ -218,9 +218,9 @@ public class NeuronSquareMesh2DTest { public void test3x2CylinderNetwork2() { final FeatureInitializer[] initArray = { init }; final Network net = new NeuronSquareMesh2D(2, false, - 3, true, - SquareNeighbourhood.MOORE, - initArray).getNetwork(); + 3, true, + SquareNeighbourhood.MOORE, + initArray).getNetwork(); Collection<Neuron> neighbours; // All neurons. @@ -343,9 +343,9 @@ public class NeuronSquareMesh2DTest { public void test3x3TorusNetwork2() { final FeatureInitializer[] initArray = { init }; final Network net = new NeuronSquareMesh2D(3, true, - 3, true, - SquareNeighbourhood.MOORE, - initArray).getNetwork(); + 3, true, + SquareNeighbourhood.MOORE, + initArray).getNetwork(); Collection<Neuron> neighbours; // All neurons. @@ -567,9 +567,9 @@ public class NeuronSquareMesh2DTest { public void testConcentricNeighbourhood() { final FeatureInitializer[] initArray = { init }; final Network net = new NeuronSquareMesh2D(5, true, - 5, true, - SquareNeighbourhood.VON_NEUMANN, - initArray).getNetwork(); + 5, true, + SquareNeighbourhood.VON_NEUMANN, + initArray).getNetwork(); Collection<Neuron> neighbours; Collection<Neuron> exclude = new HashSet<Neuron>();