[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen <eigen@xxxxxxxxxxxxxxxxxxx>
- Subject: [eigen] 2.0.6 release
- From: Benoit Jacob <jacob.benoit.1@xxxxxxxxx>
- Date: Wed, 23 Sep 2009 12:27:38 -0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=XteB5q7+NFKPowbC36mjvKishfcNA3IFD2OnWZbpC1I=; b=cDjYS0k52Tgol90byukdTnHyCVyiX9vn22MBJYsVIy3WkuntXo5lKnX2WhjiAnEXcq YT0zQ5ANXX5fbJQ0YsiTJE4kysjq6U8z2+UKXQMt8yrHaqgp0NUwN2CnQfy8dwhyWmXY +oSqlraZM1c8pPS0Ue8mRhMhrVcWsswQmTmpU=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=kGOBYnSTIJ/e1FaGPBEO2RasguPHT3p/66IKcm2Q2jC7XEe8T57O/V/jXmosZPV0Yf ny7vE+22EMArXuFTNYj8lKjYvk4AQ9SyuJpPt0Tm2p6Ds+tvrxeKk+Wt1LRhwBKFnq/G HzowJhI3/bN4ODZgHT2rNYo6Nk1olqk7vsY/Q=
Hi,
Eigen 2.0.6 is released.
The source archive is at:
http://bitbucket.org/eigen/eigen2/get/2.0.6.tar.bz2
Changes since 2.0.5:
* fix bug: visitors didn't work on row-vectors.
* fix bug #50: compilation errors with swap().
* fix bug #42: Add Transform::Identity() as mentioned in the tutorial.
* allow to disable all alignment code by defining EIGEN_DONT_ALIGN
(backport from devel branch).
* backport the devel branch's StdVector header as NewStdVector. You may also
#define EIGEN_USE_NEW_STDVECTOR to make StdVector use it automatically.
However, by default it isn't used by StdVector, to preserve compatibility.
* Vectorized quaternion product (for float) by Rohit Garg
(backport from devel branch).
* allow to override EIGEN_RESTRICT and add EIGEN_DONT_USE_RESTRICT_KEYWORD.
* fix a warning in updated ei_aligned_malloc; fixed by backporting the body
from the devel branch; may result in a different choice of system aligned
malloc function.
* update the documentation.
Benoit