Skip to content

Commit f2b078a

Browse files
committed
Added LU decomposition algorthim
1 parent 1202d09 commit f2b078a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/test/java/com/thealgorithms/matrix/LUDecompositionTest.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@ public class LUDecompositionTest {
88

99
@Test
1010
public void testLUDecomposition() {
11-
double[][] A = {
12-
{4, 3},
13-
{6, 3}
14-
};
11+
double[][] A = {{4, 3}, {6, 3}};
1512

1613
// Perform LU decomposition
1714
LUDecomposition.LU lu = LUDecomposition.decompose(A);

0 commit comments

Comments
 (0)