Changeset 287cc8 in git for ntl/doc/tour-changes.html


Ignore:
Timestamp:
Jan 5, 2010, 5:51:13 PM (14 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
3c38b3810fd61108b01f123f5a91e13ccff52b20
Parents:
1d43d184dd871d77c1ba8e095d768f22a0fbe92f
Message:
ntl 5.5.2

git-svn-id: file:///usr/local/Singular/svn/trunk@12402 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • ntl/doc/tour-changes.html

    r1d43d18 r287cc8  
    1717</p>
    1818</h1>
     19
     20<p> <hr> <p>
     21<h3>
     222009.08.14: Changes between NTL 5.5.1 and 5.5.2
     23</h3>
     24
     25<ul>
     26<li>
     27New routines <tt>MulAddTo</tt> and <tt>MulSubFrom</tt>
     28for computing <tt>x += a*b</tt> and <tt>x -= a*b</tt>,
     29where <tt>x</tt> and <tt>a</tt> are <tt>ZZ</tt>'s and
     30<tt>b</tt> is a <tt>ZZ</tt> or a <tt>long</tt>.
     31In the case where <tt>b</tt> is a <tt>long</tt>,
     32this may be much faster than writing
     33<tt>mul(t, a, b); add(x, x, t)</tt>.
     34See <a href="ZZ.txt">ZZ.txt</a> for details.
     35
     36These new routines are used in a number of places in
     37NTL to get faster algorithms (for example, the <tt>LLL</tt> routine).
     38
     39<li>
     40Fixed a relatively benign indexing bug in <tt>GF2EX</tt>
     41discovered by Berend-Benjamin Tams using the <tt>valgrind</tt> tool.
     42
     43
     44
     45
     46</ul>
    1947
    2048<p> <hr> <p>
Note: See TracChangeset for help on using the changeset viewer.