Skip to content

Commit 5d977ce

Browse files
authored
Fix spelling mistake in modular SLAE section
Changed the incorrect spelling 'module' to the correct term 'modulus' in the modular SLAE section.
1 parent b62f5e4 commit 5d977ce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/linear_algebra/linear-system-gauss.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Reverse phase only takes $O(nm)$, which is much faster than forward phase. In fo
159159
160160
## Solving modular SLAE
161161
162-
For solving SLAE in some module, we can still use the described algorithm. However, in case the module is equal to two, we can perform Gauss-Jordan elimination much more effectively using bitwise operations and C++ bitset data types:
162+
For solving SLAE in some modulus, we can still use the described algorithm. However, in case the modulus is equal to 2, we can perform Gauss-Jordan elimination much more effectively using bitwise operations and C++ bitset data types:
163163
164164
```cpp
165165
int gauss (vector < bitset<N> > a, int n, int m, bitset<N> & ans) {

0 commit comments

Comments
 (0)