mirror of
https://github.com/TheAlgorithms/Java.git
synced 2026-03-13 08:40:43 +08:00
style: include DLS_DEAD_LOCAL_STORE (#5276)
This commit is contained in:
@@ -7,7 +7,6 @@ public final class Gaussian {
|
||||
}
|
||||
|
||||
public static ArrayList<Double> gaussian(int matSize, ArrayList<Double> matrix) {
|
||||
ArrayList<Double> answerArray = new ArrayList<Double>();
|
||||
int i;
|
||||
int j = 0;
|
||||
|
||||
@@ -22,8 +21,7 @@ public final class Gaussian {
|
||||
}
|
||||
|
||||
mat = gaussianElimination(matSize, i, mat);
|
||||
answerArray = valueOfGaussian(matSize, x, mat);
|
||||
return answerArray;
|
||||
return valueOfGaussian(matSize, x, mat);
|
||||
}
|
||||
|
||||
// Perform Gaussian elimination
|
||||
|
||||
Reference in New Issue
Block a user