Skip to content

Commit e2565b6

Browse files
committed
[rand.eng.philox] Replace "the function f(x) returns" with "f(x) is".
1 parent 0597a26 commit e2565b6

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

source/numerics.tex

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3152,12 +3152,14 @@
31523152
where:
31533153
\begin{itemize}
31543154
\item
3155-
the $\mullo(\tcode{a}, \tcode{b}, \tcode{w})$ function returns
3156-
the low half of the modular multiplication of \tcode{a} and \tcode{b}: $(\tcode{a} \cdot \tcode{b}) \mod 2^w$,
3155+
$\mullo(\tcode{a}, \tcode{b}, \tcode{w})$ is
3156+
the low half of the modular multiplication of \tcode{a} and \tcode{b}:
3157+
$(\tcode{a} \cdot \tcode{b}) \mod 2^w$,
31573158

31583159
\item
3159-
the $\mulhi(\tcode{a}, \tcode{b}, \tcode{w})$ function returns
3160-
the high half of the multiplication of \tcode{a} and \tcode{b}: $(\left\lfloor (\tcode{a} \cdot \tcode{b}) / 2^w \right\rfloor)$,
3160+
$\mulhi(\tcode{a}, \tcode{b}, \tcode{w})$ is
3161+
the high half of the modular multiplication of \tcode{a} and \tcode{b}:
3162+
$(\left\lfloor (\tcode{a} \cdot \tcode{b}) / 2^w \right\rfloor)$,
31613163

31623164
\item
31633165
$k = 0, \dotsc, n/2 - 1$ is the index in the sequences,

0 commit comments

Comments
 (0)