aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/SelfAdjointView.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2014-03-11 13:33:44 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2014-03-11 13:33:44 +0100
commit082f7ddc3745160c57d8a5a185a2a22e4d781b5f (patch)
treee57f1b2c91c824cd02156fe14c78d87579d51b30 /Eigen/src/Core/SelfAdjointView.h
parent9be72cda2ab25650ce97eacd6dc2e994c988741b (diff)
Port Cholesky module to evaluators
Diffstat (limited to 'Eigen/src/Core/SelfAdjointView.h')
-rw-r--r--Eigen/src/Core/SelfAdjointView.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Eigen/src/Core/SelfAdjointView.h b/Eigen/src/Core/SelfAdjointView.h
index f7f512cf4..b300c6a48 100644
--- a/Eigen/src/Core/SelfAdjointView.h
+++ b/Eigen/src/Core/SelfAdjointView.h
@@ -39,8 +39,11 @@ struct traits<SelfAdjointView<MatrixType, UpLo> > : traits<MatrixType>
enum {
Mode = UpLo | SelfAdjoint,
Flags = MatrixTypeNestedCleaned::Flags & (HereditaryBits)
- & (~(PacketAccessBit | DirectAccessBit | LinearAccessBit)), // FIXME these flags should be preserved
+ & (~(PacketAccessBit | DirectAccessBit | LinearAccessBit)) // FIXME these flags should be preserved
+#ifndef EIGEN_TEST_EVALUATORS
+ ,
CoeffReadCost = MatrixTypeNestedCleaned::CoeffReadCost
+#endif
};
};
}