Re: [eigen] External contributions |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] External contributions
- From: Gael Guennebaud <gael.guennebaud@xxxxxxxxx>
- Date: Wed, 4 Feb 2009 17:31:00 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=K0XJVbVSw7m0tf3Qt4rmOX7JZ3/PHPbaH5WxWXr0QZM=; b=C2xuN0oCr1vw0G+OdNUJnf7+CktvdW++EID39z8HindLyV/Lau6cqP2AI9xRXlFyY6 1vv+/t6Xpgx78/wfw/koVc+tGDTY/0g+CfuuyScVu00Lx9mJGnWvDvmRfUuoYceeXYFw QkH43yDsqF2gk/VOqPO6nlfZkmV3tIwylgv1k=
- 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=H7u+SSSjukHa8t074xuqteGmbkPETYwGTl3a7nqDZKDyc/sSnmbWCCOKDqgpcSbv+3 8u8gS5ra2tsP3QwJaUpvN3qERKxPK5BfzuWM5ByaRLh+SRVZJBkwVxKXVSnZd5tZO7gx 5gW7Ey5trSraO/U1HnENVwrLSiHsnAFFmEfD4=
Hi,
I think the unsupported/ directory is now ready to accept
contributions. Most of the details are explained in the
unsupported/README.txt file that I copied in this message.
Timothy: do you have a svn account to commit your symbolic stuff
yourself ? or are you ok if I add it now ? (if you plan to keep
working it you'll need one anyway)
gael.
--------------------------------------
unsupported/README.txt
--------------------------------------
[...]
In order to use an unsupported module you have to do either:
- add the path_to_eigen2/unsupported directory to your include path and do:
#include <Eigen/ModuleHeader>
- or directly do:
#include <unsupported/Eigen/ModuleHeader>
This directory is organized as follow:
unsupported/Eigen/ModuleHeader1
unsupported/Eigen/ModuleHeader2
unsupported/Eigen/...
unsupported/Eigen/src/Module1/SourceFile1.h
unsupported/Eigen/src/Module1/SourceFile2.h
unsupported/Eigen/src/Module1/...
unsupported/Eigen/src/Module2/SourceFile1.h
unsupported/Eigen/src/Module2/SourceFile2.h
unsupported/Eigen/src/Module2/...
unsupported/Eigen/src/...
unsupported/doc/snippets/.cpp <- code snippets for the doc
unsupported/doc/examples/.cpp <- examples for the doc
unsupported/doc/TutorialModule1.dox
unsupported/doc/TutorialModule2.dox
unsupported/doc/...
unsupported/test/.cpp <- unit test files
The documentation is generated at the same time than the main Eigen
documentation.
The .html files are generated in: build_dir/doc/html/unsupported/