You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -159,14 +159,14 @@ ge.shuffle(u); // <6>
159
159
160
160
1. Prints a random integer from $[1,10]$, where each integer is equally likely to occur.
161
161
2. Prints a random real from a uniform distribution over $[1,10)$
162
-
3. Prints a random variate from a normal distribution with mean 70 and standard deviation 15.
162
+
3. Prints a random variate from a normal distribution with a mean of 70 and a standard deviation of 15.
163
163
4. Fills an array `v` with ten random variates from that same distribution.
164
164
5. Fills an array `u` with five elements drawn from `v` without replacement.
165
165
6. Shuffles the elements of `u`.
166
166
167
167
### Extra Analysis
168
168
169
-
Extra non-member functions for generator analysis are defined if the [``bit`][] library is available.
169
+
Extra non-member functions for generator analysis are defined if the [`bit`][] library is available.
170
170
171
171
`bit` is a `C++` library for doing linear algebra over [GF(2)][] the simplest field of two elements $\{0,1\}$, where the usual arithmetic operations are performed mod 2.
172
172
The `bit` library is header only and is easily incorporated into any application.
0 commit comments