[eigen] Eigen 2.0.10 released |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen <eigen@xxxxxxxxxxxxxxxxxxx>
- Subject: [eigen] Eigen 2.0.10 released
- From: Benoit Jacob <jacob.benoit.1@xxxxxxxxx>
- Date: Wed, 25 Nov 2009 09:05:29 -0500
- 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=p7VEUQLUDAaGaQUKJInf56xmwT4/WQORqQmfTjr8kAo=; b=bqUMGLzkuIAMzyKCcTwQr4cSSCmRN2BzuvbsMHgVuiyxxR4oOkijhFi04/DYSs7xH8 S3nBqkIxUqHFI+tm9vPmRgZkUANy/3WSYYwbqNBPi7D8ktnu6MDMtunGezIhf9lkFA/v SW43cXaadTMLVEUGM1AcDQTdxVkfnT/DLzv80=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=V34o0z9hoIuGsGiFhFRb35Tt7NTkGKVwMm+2lHT5aeh6RVehpi8G6QxC1bioS8YxzI ogFkq+0bji7ifzTbejoLMxGUB4kzkd+xJeQ0w4KDtrGLl5ujpCJZHXukSHp+gvhopWvT MwThaQnjT3C5/1/Z/hgPruKDQ4wwkjELOTUWk=
Hi,
Eigen 2.0.10 is released.
The source archive is at:
http://bitbucket.org/eigen/eigen/get/2.0.10.tar.bz2
Changes since 2.0.9:
* Rewrite 4x4 matrix inverse to improve precision, and add a new
unit test to guarantee that precision. It's less fast, but it's still
faster than the cofactors method.
* Fix bug #62: crash in SSE code with MSVC 2008 (Thanks to Hauke Heibel).
* Fix bug #65: MatrixBase::nonZeros() was recursing infinitely
* Fix PowerPC platform detection on Mac OSX.
* Prevent the construction of bogus MatrixBase objects and
generate good compilation errors for that. Done by making the default
constructor protected, and adding some private constructors.
* Add option to initialize all matrices by zero: just #define
EIGEN_INITIALIZE_MATRICES_BY_ZERO
* Improve Map documentation
* Install the pkg-config file to share/pkgconfig, instead of
lib/pkgconfig (thanks to Thomas Capricelli)
* fix warnings
* fix compilation with MSVC 2010
* adjust to repository name change
Cheers,
Benoit