aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Core
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-04-24 18:35:39 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-04-24 18:35:39 +0000
commit9385793f71f2a606b0527df8ea1d2153c3e70e11 (patch)
tree7881ba4e88218c356465609d44c6b43ab17491b1 /Eigen/Core
parent6ae037dfb5b340d2d545ccbb4135b04903a2e44f (diff)
Fix a couple of issue with the vectorization. In particular, default ei_p* functions
are provided to handle not suported types seemlessly. Added a generic null-ary expression with null-ary functors. They replace Zero, Ones, Identity and Random.
Diffstat (limited to 'Eigen/Core')
-rw-r--r--Eigen/Core5
1 files changed, 1 insertions, 4 deletions
diff --git a/Eigen/Core b/Eigen/Core
index 24dc37145..950328aaa 100644
--- a/Eigen/Core
+++ b/Eigen/Core
@@ -36,17 +36,14 @@ namespace Eigen {
#include "src/Core/Temporary.h"
#include "src/Core/CwiseBinaryOp.h"
#include "src/Core/CwiseUnaryOp.h"
+#include "src/Core/CwiseNullaryOp.h"
#include "src/Core/Product.h"
#include "src/Core/Block.h"
#include "src/Core/Minor.h"
#include "src/Core/Transpose.h"
#include "src/Core/Dot.h"
-#include "src/Core/Random.h"
-#include "src/Core/Zero.h"
-#include "src/Core/Ones.h"
#include "src/Core/DiagonalMatrix.h"
#include "src/Core/DiagonalCoeffs.h"
-#include "src/Core/Identity.h"
#include "src/Core/Redux.h"
#include "src/Core/Visitor.h"
#include "src/Core/Fuzzy.h"