JAL-3438 spotless for 2.11.2.0
[jalview.git] / test / jalview / math / SparseMatrixTest.java
index 3c2ccaa..7295fad 100644 (file)
@@ -20,7 +20,8 @@ public class SparseMatrixTest
   public void testConstructor()
   {
     MatrixI m1 = new SparseMatrix(
-            new double[][] { { 2, 0, 4 }, { 0, 6, 0 } });
+            new double[][]
+            { { 2, 0, 4 }, { 0, 6, 0 } });
     assertEquals(m1.getValue(0, 0), 2d);
     assertEquals(m1.getValue(0, 1), 0d);
     assertEquals(m1.getValue(0, 2), 4d);
@@ -33,7 +34,8 @@ public class SparseMatrixTest
   public void testTranspose()
   {
     MatrixI m1 = new SparseMatrix(
-            new double[][] { { 2, 0, 4 }, { 5, 6, 0 } });
+            new double[][]
+            { { 2, 0, 4 }, { 5, 6, 0 } });
     MatrixI m2 = m1.transpose();
     assertTrue(m2 instanceof SparseMatrix);
     assertEquals(m2.height(), 3);
@@ -45,6 +47,7 @@ public class SparseMatrixTest
     assertEquals(m2.getValue(2, 0), 4d);
     assertEquals(m2.getValue(2, 1), 0d);
   }
+
   @Test(groups = "Functional")
   public void testPreMultiply()
   {
@@ -80,11 +83,13 @@ public class SparseMatrixTest
 
   @Test(
     groups = "Functional",
-    expectedExceptions = { IllegalArgumentException.class })
+    expectedExceptions =
+    { IllegalArgumentException.class })
   public void testPreMultiply_tooManyColumns()
   {
     Matrix m1 = new SparseMatrix(
-            new double[][] { { 2, 3, 4 }, { 3, 4, 5 } }); // 2x3
+            new double[][]
+            { { 2, 3, 4 }, { 3, 4, 5 } }); // 2x3
 
     /*
      * 2x3 times 2x3 invalid operation - 
@@ -96,11 +101,13 @@ public class SparseMatrixTest
 
   @Test(
     groups = "Functional",
-    expectedExceptions = { IllegalArgumentException.class })
+    expectedExceptions =
+    { IllegalArgumentException.class })
   public void testPreMultiply_tooFewColumns()
   {
     Matrix m1 = new SparseMatrix(
-            new double[][] { { 2, 3, 4 }, { 3, 4, 5 } }); // 2x3
+            new double[][]
+            { { 2, 3, 4 }, { 3, 4, 5 } }); // 2x3
 
     /*
      * 3x2 times 3x2 invalid operation - 
@@ -109,7 +116,7 @@ public class SparseMatrixTest
     m1.preMultiply(m1);
     fail("Expected exception");
   }
-  
+
   @Test(groups = "Functional")
   public void testPostMultiply()
   {
@@ -122,8 +129,9 @@ public class SparseMatrixTest
      * (5040 50400)
      */
     MatrixI m1 = new SparseMatrix(new double[][] { { 2, 3 }, { 4, 5 } });
-    MatrixI m2 = new SparseMatrix(new double[][] { { 10, 100 },
-        { 1000, 10000 } });
+    MatrixI m2 = new SparseMatrix(
+            new double[][]
+            { { 10, 100 }, { 1000, 10000 } });
     MatrixI m3 = m1.postMultiply(m2);
     assertEquals(m3.getValue(0, 0), 3020d);
     assertEquals(m3.getValue(0, 1), 30200d);
@@ -283,7 +291,7 @@ public class SparseMatrixTest
     int rows = 6;
     int cols = rows;
     double[][] d = getSparseValues(rows, cols, 3);
-  
+
     /*
      * make a copy of the values so m1, m2 are not
      * sharing arrays!
@@ -352,10 +360,11 @@ public class SparseMatrixTest
   @Test(groups = "Functional")
   public void testPreMultiply_sparseProduct()
   {
-    MatrixI m1 = new SparseMatrix(new double[][] { { 1 }, { 0 }, { 0 },
-        { 0 }, { 0 } }); // 5x1
+    MatrixI m1 = new SparseMatrix(
+            new double[][]
+            { { 1 }, { 0 }, { 0 }, { 0 }, { 0 } }); // 5x1
     MatrixI m2 = new SparseMatrix(new double[][] { { 1, 1, 1, 1 } }); // 1x4
-  
+
     /*
      * m1.m2 makes a row of 4 1's, and 4 rows of zeros
      * 20% non-zero so not 'sparse'
@@ -375,8 +384,9 @@ public class SparseMatrixTest
   @Test(groups = "Functional")
   public void testFillRatio()
   {
-    SparseMatrix m1 = new SparseMatrix(new double[][] { { 2, 0, 4, 1, 0 },
-    { 0, 6, 0, 0, 0 } });
+    SparseMatrix m1 = new SparseMatrix(
+            new double[][]
+            { { 2, 0, 4, 1, 0 }, { 0, 6, 0, 0, 0 } });
     assertEquals(m1.getFillRatio(), 0.4f);
   }
 
@@ -393,7 +403,7 @@ public class SparseMatrixTest
     int rows = 10;
     int cols = rows;
     double[][] d = getSparseValues(rows, cols, 3);
-  
+
     /*
      * make a copy of the values so m1, m2 are not
      * sharing arrays!