summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/math/lgsFp.cpp2
-rw-r--r--tcr.pdfbin685349 -> 685349 bytes
2 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;
diff --git a/tcr.pdf b/tcr.pdf
index 16c465d..e112d3d 100644
--- a/tcr.pdf
+++ b/tcr.pdf
Binary files differ