[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen <eigen@xxxxxxxxxxxxxxxxxxx>
- Subject: [eigen] 2.0.12 released
- From: Benoit Jacob <jacob.benoit.1@xxxxxxxxx>
- Date: Thu, 11 Feb 2010 21:41:30 -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=XNRna0eoRzPLNfbwR0JSTLKozd/2JXfeMrK0S1FXYFE=; b=hgBtZqqV/C7louZ6eTIMKUUVMC49LofBlv4hnUPJZGVJtHLZQggRgkk1P4Gh/lnbix 7uVNQ7tg532woN5ACfd5whLF9fnzk5FiwxoXpWu+gkovMrdrkXnzIx24vVcTpK2dTPfP 5bu8daj9cJ89gaLKuV7bRX9opP1ANswOAnT88=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=PbA8DdFt9EDF6eSe0SzPqRuGXSSjDdRji1CdwQoEOId056x7RkqNwe7HEZMCBJmYW2 oh9o8UrWozcZhjP0GXcg2gWoJms0qKInido8S3h6KYHPFVufGod6dlpG9pbVpEqMADWG oVG5nn9hbNram0ouHiShKfeETogKAd7Nv26Vc=
Hi,
Eigen 2.0.12 is released.
The source archive is at:
http://bitbucket.org/eigen/eigen/get/2.0.12.tar.bz2
Changes since 2.0.11:
* EIGEN_DEFAULT_TO_ROW_MAJOR is fully supported and tested.
* Several important fixes for row-major matrices.
* Fix support of several algorithms for mixed fixed-dynamic size
matrices where the fixed dimension is greater than the dynamic
dimension. For example: Matrix<float,3,Dynamic>(3,2)
* fix EIGEN_DONT_ALIGN: now it _really_ disables vectorization
(was giving a #error unless you also used EIGEN_DONT_VECTORIZE).
* Fix #92: Support QNX's QCC compiler (patch by Piotr Trojanek)
* Fix #90, missing type cast in LU, allow to use LU with MPFR
(patch by 'Wolf').
* Fix ICC compiler support: work around a bug present at least in ICC 11.1.
* Compilation fixes for computeInverse() on expressions.
* Fix a gap in a unit-test (thanks to Jitse Niesen)
* Backport improvements to benchmarking code.
* Documentation fixes
Benoit