Re: [eigen] Eigen2 to Eigen3 Migration Path |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Eigen2 to Eigen3 Migration Path
- From: Benoit Jacob <jacob.benoit.1@xxxxxxxxx>
- Date: Wed, 19 Jan 2011 11:14:07 -0500
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=wwaTdlmTDayh+wXT3B/UH94PpdBI1BDD+kd98JSSNAs=; b=JW1gCDQXNcfy3U/3vh+AqiXXm1CzMfthZBwuoCIb97VxnR/jGIxfkzW3kFqv6m6cTv EqV2BKPF410EaC+Svjfv6BUjToOU7292SmT5ZlC7TCkdRgPf+L/R9yR04VuKJGztOO+g rN0CRQvpnKJL0tir9pi9FfkMEvJ/eiGRsMYLI=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=gK/jtUBoo+bARLUTMRkTNg+WDQRJU7ora+BdvmJj0vSe7isOyivlkICvQrbmfF2uxb Lh7JhGm4jQ/qq2TgbSJ2Dw+4BjKCZZOBDTwLE+UfZxm+eskMmn8aYmfddh+oKOtoaeds enmGWVoZm2Ga4xqCpOH4Ye9Se/f86sIG3CO1o=
2011/1/14 Benoit Jacob <jacob.benoit.1@xxxxxxxxx>:
> Great to see a solution on the horizon. Now we need to implement it. I
> filed a bug:
>
> http://eigen.tuxfamily.org/bz/show_bug.cgi?id=153
>
> I marked it as blocking 3.0, as it doesn't really need to be tested in
> a beta. Could even not block 3.0 actually, but I have a feeling that
> that can be implemented quickly.
I have started implementing this. EIGEN2_SUPPORT is already expanded
as of today, the Eigen2 test suite has been imported into Eigen3, and
can be enabled with the CMake option EIGEN_TEST_EIGEN2, after which
you can do:
make buildtests_eigen2
and
make check_eigen2
(I'm going to make standard targets depend on them too, when
EIGEN_TEST_EIGEN2 is defined).
Currently, only some core functionality tests compile.
Benoit