(wrong string) ée

From: <git_AT_suckless.org>
Date: Sat, 14 May 2016 20:54:26 +0200 (CEST)

commit bc8390c7615cf9a466420aa05130322488d54d7b
Author: Mattias Andrée <maandree_AT_kth.se>
AuthorDate: Sat May 14 20:20:10 2016 +0200
Commit: Mattias Andrée <maandree_AT_kth.se>
CommitDate: Sat May 14 20:20:10 2016 +0200

    Division is truncated, not floored
    
    Signed-off-by: Mattias Andrée <maandree_AT_kth.se>

diff --git a/doc/bit-operations.tex b/doc/bit-operations.tex
index be9fccb..c7e15c9 100644
--- a/doc/bit-operations.tex
+++ b/doc/bit-operations.tex
_AT_@ -40,15 +40,14 @@ $r = \phantom{0100}100001_2$ after calling {\tt zrsh(r, a, 2)}.
 \vspace{1em}
 
 {\tt zlsh(r, a, b)} is equivalent to $r \gets a \cdot 2^b$,
-and {\tt zrsh(r, a, b)} is equivalent to
-$r \gets \lfloor a \div 2^b \rfloor$, {\tt zlsh} and
-{\tt zrsh} are significantly faster than {\tt zpowu}
-and should be used whenever possible. {\tt zpowu}
-does not check if it is possible for it to use {\tt zlsh}
-instead, even if it would, {\tt zlsh} and {\tt zrsh}
-would still be preferable in most cases because it
-removes the need for {\tt zmul} and {\tt zdiv},
-respectively.
+and {\tt zrsh(r, a, b)} is equivalent to $r \gets a \div 2^b$,
+with truncated division, {\tt zlsh} and {\tt zrsh} are
+significantly faster than {\tt zpowu} and should be used
+whenever possible. {\tt zpowu} does not check if it is
+possible for it to use {\tt zlsh} instead, even if it
+would, {\tt zlsh} and {\tt zrsh} would still be preferable
+in most cases because it removes the need for {\tt zmul}
+and {\tt zdiv}, respectively.
 
 {\tt zlsh} and {\tt zrsh} are implemented in two steps:
 (1) shift whole characters, that is, groups of aligned
Received on Sat May 14 2016 - 20:54:26 CEST

This archive was generated by hypermail 2.3.0 : Sat May 14 2016 - 21:00:20 CEST