moved purely "array" related stuff to a new module Array.

This include:
 - cwise Pow,Sin,Cos,Exp...
 - cwise Greater and other comparison operators
 - .any(), .all() and partial reduction
 - random
This commit is contained in:
Gael Guennebaud
2008-05-31 18:11:48 +00:00
parent a2f71f9d7e
commit 310f7aa096
18 changed files with 803 additions and 632 deletions

View File

@@ -0,0 +1,6 @@
FILE(GLOB Eigen_ARRAY_SRCS "*.h")
INSTALL(FILES
${Eigen_ARRAY_SRCS}
DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen/src/ARRAY
)