Update circulant custom expression example

This commit is contained in:
Gael Guennebaud
2015-02-16 17:21:16 +01:00
parent 0f464d9d87
commit 69fa405096
4 changed files with 4 additions and 5 deletions

View File

@@ -1,11 +1,11 @@
namespace Eigen {
namespace internal {
template <class ArgType>
struct traits<Circulant<ArgType> >
struct traits<Circulant<ArgType> >
{
typedef Eigen::Dense StorageKind;
typedef Eigen::MatrixXpr XprKind;
typedef typename ArgType::Index Index;
typedef typename ArgType::StorageIndex StorageIndex;
typedef typename ArgType::Scalar Scalar;
enum {
Flags = Eigen::ColMajor,