summaryrefslogtreecommitdiff
path: root/math/chineseRemainder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'math/chineseRemainder.cpp')
-rw-r--r--math/chineseRemainder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/chineseRemainder.cpp b/math/chineseRemainder.cpp
index 5d06743..2cf12f7 100644
--- a/math/chineseRemainder.cpp
+++ b/math/chineseRemainder.cpp
@@ -16,7 +16,7 @@ struct ChineseRemainder {
return res;
}
- // Fügt Kongruenz l * x = b (mod m) hinzu.
+ // Fügt Kongruenz l * x = r (mod m) hinzu.
void addEquation(ll l, ll r, ll m) {
lhs.push_back(l);
rhs.push_back(r);