Re: [eigen] Re: How to know the current instaled version of Eigen? |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Re: How to know the current instaled version of Eigen?
- From: Benoit Jacob <jacob.benoit.1@xxxxxxxxx>
- Date: Wed, 28 Jul 2010 10:40:18 -0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=gaSPLb2rAnVd4dvweaPtiv9IG+Xenc59N54LozSqAA0=; b=ZaJtx/PvtkautH13uIYZbRdLI3ZRRMwcy3jKLuCckBsHzkrc8iY/oK6TsPMtAdA4QS LlfiTnV9h40uD/UZe94t4jATmVR/h5O87LyJWHqLZ4qF22tJJ7GkJDCgYjMy7uyZ6GaL mFL/53F4Lln2Btkk0Y3n/M7Bdt3wZjCEgFpQY=
- 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:content-transfer-encoding; b=NJaRcrngFhVQtnzHIyxnTilBhBJM7bW6t1L9PV0yWaDet9RD8yE1O0sqm3GRBQFXAN 2/N/gnwgTndCTDVL4SWVfQuhDn5H59ohmhg1m0D65GvH7T7XBlgsS3F+iFFup3cBA6SX EThQng8weYIg68HD0crUoEPhOBJdHqluNoMRo=
And for the record, without cmake or installing anything, the version
numbers are in Eigen/src/Core/util/Macros.h
[bjacob@cahouette eigen]$ grep VERSION Eigen/src/Core/util/Macros.h
#define EIGEN_WORLD_VERSION 2
#define EIGEN_MAJOR_VERSION 91
#define EIGEN_MINOR_VERSION 0
#define EIGEN_VERSION_AT_LEAST(x,y,z) (EIGEN_WORLD_VERSION>x ||
(EIGEN_WORLD_VERSION>=x && \
(EIGEN_MAJOR_VERSION>y ||
(EIGEN_MAJOR_VERSION>=y && \
EIGEN_MINOR_VERSION>=z))))
2010/7/28 William Oquendo <woquendo@xxxxxxxxx>:
> Sorry for the noise, the file eigen.pc with pkg-config does what I need.
>
> Thanks.
>
> Best regards / Cordialmente,
>
> --
> William Oquendo
> Phd Candidate
> Simulation Of Physical Systems Group
> National University of Colombia
> Linux User # 321481
> *********************
> Este correo puede carecer de tildes o eñes ya que el teclado no contiene
> estos caracteres. Presento excusas por eso.
>
> *********************
>
>
>
> On Wed, Jul 28, 2010 at 8:09 AM, William Oquendo <woquendo@xxxxxxxxx> wrote:
>>
>> Dear all,
>>
>> Given an already installed version of Eigen (by others), how can I know
>> its version? Is there some info in some headeer file? I have used some grep
>> commands with no success.
>>
>> Thanks in advance.
>>
>> Best regards / Cordialmente,
>>
>> --
>> William Oquendo
>> Phd Candidate
>> Simulation Of Physical Systems Group
>> National University of Colombia
>> Linux User # 321481
>> *********************
>> Este correo puede carecer de tildes o eñes ya que el teclado no contiene
>> estos caracteres. Presento excusas por eso.
>>
>> *********************
>>
>
>