README.txt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. This directory contains contributions from various users.
  2. They are provided "as is", without any support. Nevertheless,
  3. most of them are subject to be included in Eigen in the future.
  4. In order to use an unsupported module you have to do either:
  5. - add the path_to_eigen/unsupported directory to your include path and do:
  6. #include <Eigen/ModuleHeader>
  7. - or directly do:
  8. #include <unsupported/Eigen/ModuleHeader>
  9. If you are interested in contributing to one of them, or have other stuff
  10. you would like to share, feel free to contact us:
  11. http://eigen.tuxfamily.org/index.php?title=Main_Page#Mailing_list
  12. Any kind of contributions are much appreciated, even very preliminary ones.
  13. However, it:
  14. - must rely on Eigen,
  15. - must be highly related to math,
  16. - should have some general purpose in the sense that it could
  17. potentially become an offical Eigen module (or be merged into another one).
  18. In doubt feel free to contact us. For instance, if your addons is very too specific
  19. but it shows an interesting way of using Eigen, then it could be a nice demo.
  20. This directory is organized as follow:
  21. unsupported/Eigen/ModuleHeader1
  22. unsupported/Eigen/ModuleHeader2
  23. unsupported/Eigen/...
  24. unsupported/Eigen/src/Module1/SourceFile1.h
  25. unsupported/Eigen/src/Module1/SourceFile2.h
  26. unsupported/Eigen/src/Module1/...
  27. unsupported/Eigen/src/Module2/SourceFile1.h
  28. unsupported/Eigen/src/Module2/SourceFile2.h
  29. unsupported/Eigen/src/Module2/...
  30. unsupported/Eigen/src/...
  31. unsupported/doc/snippets/.cpp <- code snippets for the doc
  32. unsupported/doc/examples/.cpp <- examples for the doc
  33. unsupported/doc/TutorialModule1.dox
  34. unsupported/doc/TutorialModule2.dox
  35. unsupported/doc/...
  36. unsupported/test/.cpp <- unit test files
  37. The documentation is generated at the same time than the main Eigen documentation.
  38. The .html files are generated in: build_dir/doc/html/unsupported/