summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorYidi <noob999noob999@gmail.com>2025-06-06 15:24:46 +0200
committerYidi <noob999noob999@gmail.com>2025-06-06 15:24:46 +0200
commit4335aa75cf7eb9a3bb6c64f7955a96a7dcc08c75 (patch)
tree192298bc3ec5f8eceaa4bcd76bf3e839416b6b77 /content
parentaca95353f22fb48fab74bf45de85f8badaa2e274 (diff)
fix formatting
Diffstat (limited to 'content')
-rw-r--r--content/math/lgsFp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/math/lgsFp.cpp b/content/math/lgsFp.cpp
index a8d7fc7..4c12477 100644
--- a/content/math/lgsFp.cpp
+++ b/content/math/lgsFp.cpp
@@ -13,7 +13,7 @@ void gauss(int n, int m) {
if (i == r) continue;
f = mat[i][c];
for (int j = c; j < m; j++) {
- mat[i][j] = (mat[i][j] - f * mat[r][j] % mod + mod) % mod;
+ mat[i][j] = (mat[i][j] - f*mat[r][j] % mod + mod) % mod;
}}
pivots.push_back(c);
if (++r == n) break;