summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorPaul Jungeblut <paul.jungeblut@gmail.com>2016-10-05 22:23:32 +0200
committerPaul Jungeblut <paul.jungeblut@gmail.com>2016-10-05 22:23:32 +0200
commitaa669973a3ef1e372daf80b1e3b80b020fee0771 (patch)
tree54e851cca7f81c0cae18315bdc1d6019fc4eda36 /math
parent32f50710052fdb6f260c668ae9ebd649b010ac88 (diff)
Typo in chinese remainder theorem code.
Diffstat (limited to 'math')
-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);