aboutsummaryrefslogtreecommitdiff
path: root/math/eigen2/pkg-descr
diff options
context:
space:
mode:
authorTilman Keskinoz <arved@FreeBSD.org>2008-02-09 21:59:20 +0000
committerTilman Keskinoz <arved@FreeBSD.org>2008-02-09 21:59:20 +0000
commitb7509990d64703c6e1e458f4a15876b72af85d28 (patch)
treec9141bdff285351ffd077ffe711499056e032882 /math/eigen2/pkg-descr
parent2818b6fdd244cd021018bbf7fb6a63de6478937b (diff)
downloadports-b7509990d64703c6e1e458f4a15876b72af85d28.tar.gz
ports-b7509990d64703c6e1e458f4a15876b72af85d28.zip
Add Eigen a lightweight C++ template library for vector and matrix math
Notes
Notes: svn path=/head/; revision=206969
Diffstat (limited to 'math/eigen2/pkg-descr')
-rw-r--r--math/eigen2/pkg-descr15
1 files changed, 15 insertions, 0 deletions
diff --git a/math/eigen2/pkg-descr b/math/eigen2/pkg-descr
new file mode 100644
index 000000000000..2ff2b3b7e356
--- /dev/null
+++ b/math/eigen2/pkg-descr
@@ -0,0 +1,15 @@
+Eigen is a lightweight C++ template library for vector and matrix math, a.k.a.
+linear algebra.
+Unlike most other linear algebra libraries, Eigen focuses on the simple
+mathematical needs of applications: games and other OpenGL apps, spreadsheets
+and other office apps, etc. Eigen is dedicated to providing optimal speed with
+GCC.
+Its fixed-size classes are specially optimized for small sizes up to 4,
+although it is theoretically possible to specialize them to any size. They
+never cause dynamic memory applications and the simple operations on them are
+as fast as is possible at least for sizes up to 4 (see below).
+Its dynamic-size classes are more flexible and suitable for larger sizes.
+Both fixed-size and dynamic-size classes use the same underlying C++ code,
+thanks to a curiously recurring template pattern.
+
+WWW: http://eigen.tuxfamily.org/