Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
Eigen/ | 03-May-2024 | - | 79,892 | 50,196 | ||
bench/ | 03-May-2024 | - | 17,599 | 11,451 | ||
blas/ | 03-May-2024 | - | 36,720 | 26,507 | ||
cmake/ | 03-May-2024 | - | 2,491 | 2,083 | ||
debug/ | 03-May-2024 | - | 743 | 616 | ||
demos/ | 03-May-2024 | - | 2,453 | 1,799 | ||
doc/ | 03-May-2024 | - | 13,072 | 10,320 | ||
failtest/ | 03-May-2024 | - | 369 | 260 | ||
lapack/ | 03-May-2024 | - | 9,473 | 2,797 | ||
scripts/ | 03-May-2024 | - | 438 | 302 | ||
test/ | 03-May-2024 | - | 23,071 | 16,723 | ||
unsupported/ | 03-May-2024 | - | 31,769 | 21,852 | ||
Android.mk | D | 03-May-2024 | 725 | 17 | 0 | |
CMakeLists.txt | D | 03-May-2024 | 16.5 KiB | 421 | 334 | |
COPYING.BSD | D | 03-May-2024 | 1.5 KiB | 26 | 23 | |
COPYING.GPL | D | 03-May-2024 | 34.3 KiB | 675 | 553 | |
COPYING.LGPL | D | 03-May-2024 | 25.9 KiB | 503 | 418 | |
COPYING.MINPACK | D | 03-May-2024 | 2.2 KiB | 53 | 43 | |
COPYING.MPL2 | D | 03-May-2024 | 16.3 KiB | 374 | 293 | |
COPYING.README | D | 03-May-2024 | 779 | 19 | 15 | |
CTestConfig.cmake | D | 03-May-2024 | 541 | 14 | 12 | |
CTestCustom.cmake.in | D | 03-May-2024 | 105 | 4 | 2 | |
CleanSpec.mk | D | 03-May-2024 | 2.3 KiB | 53 | 0 | |
INSTALL | D | 03-May-2024 | 1.1 KiB | 36 | 25 | |
MODULE_LICENSE_MPL2 | D | 03-May-2024 | 0 | |||
README.android | D | 03-May-2024 | 450 | 14 | 9 | |
eigen3.pc.in | D | 03-May-2024 | 193 | 7 | 6 | |
signature_of_eigen3_matrix_library | D | 03-May-2024 | 216 | 2 | 1 |
COPYING.README
1Eigen is primarily MPL2 licensed. See COPYING.MPL2 and these links: 2 http://www.mozilla.org/MPL/2.0/ 3 http://www.mozilla.org/MPL/2.0/FAQ.html 4 5Some files contain third-party code under BSD or LGPL licenses, whence the other 6COPYING.* files here. 7 8All the LGPL code is either LGPL 2.1-only, or LGPL 2.1-or-later. 9For this reason, the COPYING.LGPL file contains the LGPL 2.1 text. 10 11If you want to guarantee that the Eigen code that you are #including is licensed 12under the MPL2 and possibly more permissive licenses (like BSD), #define this 13preprocessor symbol: 14 EIGEN_MPL2_ONLY 15For example, with most compilers, you could add this to your project CXXFLAGS: 16 -DEIGEN_MPL2_ONLY 17This will cause a compilation error to be generated if you #include any code that is 18LGPL licensed. 19
README.android
1Eigen 3.2.2 2----------- 3 4Eigen is a C++ template library for linear algebra: matrices, vectors, 5numerical solvers, and related algorithms. 6 7Website: http://eigen.tuxfamily.org/ 8 9v3.2.2. Released on August 4, 2014. This is a copy of the source 10distribution from http://bitbucket.org/eigen/eigen/get/3.2.2.tar.bz2. 11 12Non MPL2 license code is disabled. Trying to include such files will 13lead to an error. See ./Eigen/src/Core/util/NonMPL2.h for details. 14