summaryrefslogtreecommitdiff
path: root/test/math/gauss.cpp
diff options
context:
space:
mode:
authorMZuenni <michi.zuendorf@gmail.com>2024-08-13 17:14:17 +0200
committerMZuenni <michi.zuendorf@gmail.com>2024-08-13 17:14:17 +0200
commitf32a00178f0d3b2152a6fc1dc492c987aaede85f (patch)
treefbc52e3475de069ed8b63513f98105bbc0728d6c /test/math/gauss.cpp
parent6fd4266de544582c0609a2fa204e0e49cd390c6e (diff)
small improvements
Diffstat (limited to 'test/math/gauss.cpp')
-rw-r--r--test/math/gauss.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/math/gauss.cpp b/test/math/gauss.cpp
index 37bacce..6e4759d 100644
--- a/test/math/gauss.cpp
+++ b/test/math/gauss.cpp
@@ -14,7 +14,7 @@ vector<vector<double>> inverseMat(const vector<vector<double>>& m) {
mat[i].resize(2*n);
mat[i][n+i] = 1;
}
- gauss(n);//the unique cetc. checks are not usefull since we dont solve an lgs...
+ gauss(n); //the unique cetc. checks are not usefull since we dont solve an lgs...
vector<vector<double>> res(m);
for (int i = 0; i < n; i++) {
res[i] = vector<double>(mat[i].begin() + n, mat[i].end());