[eigen] eigen and boost::multi_array |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: [eigen] eigen and boost::multi_array
- From: Suresh Kumar <suresh.amritapuri@xxxxxxxxx>
- Date: Wed, 15 Sep 2010 18:46:48 -0700
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=Q8m/LLtlxvdyjKdEgy+9fhjiLw6nscZ6gfaXgNPLP2k=; b=u+UR5O+Jlaaq9TABZvhA+oMo80EeOgdp1Bl5mwyqq6jby9pHhnBcQypwafR4v/mWhg kJlSMm7Dv1giefHu/Ck6CddZP4DDG2I2Yctf+YGg+xBjGaHE5x6yCp6Z1lacB+ZwdqED QH7GusSpq1KFFTqool+9H7QVW+x6Lptx3fWfQ=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=rYJhL3Ew1fAZ/oN9qrgmSx3d7rbFjqE4+ikqDjtqYWET28mV4rvbvi+qq9F5RY3Lc/ y29hD2ImWJhwhc/zd3r2jmXq1dFmwHokLPU5YjwE1si7svLLedT/VeSbQuAqVYc0Wfte e+xHVQLKyvnlcgQaOU2PZ8363LsCwGK1dk0+Q=
HiI was trying to use boost::multi_array in a project where I am already using eigen2. The following lines does not compile in my code, though it compiles correctly outside my project ie as a standalone program where eigen is not used.
typedef multi_array<double, 2> array_type;
array_type scores(extents[1][1]);
compiler error: ‘extents’ is not a type
I guess it happens because of eigen ..
Any suggestions?
thanks
suresh