diff options
| author | Paul Jungeblut <paul.jungeblut@gmail.com> | 2016-10-05 22:23:32 +0200 |
|---|---|---|
| committer | Paul Jungeblut <paul.jungeblut@gmail.com> | 2016-10-05 22:23:32 +0200 |
| commit | aa669973a3ef1e372daf80b1e3b80b020fee0771 (patch) | |
| tree | 54e851cca7f81c0cae18315bdc1d6019fc4eda36 /math | |
| parent | 32f50710052fdb6f260c668ae9ebd649b010ac88 (diff) | |
Typo in chinese remainder theorem code.
Diffstat (limited to 'math')
| -rw-r--r-- | math/chineseRemainder.cpp | 2 |
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); |
