You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
605 B
19 lines
605 B
namespace Eigen {
|
|
namespace internal {
|
|
template <class ArgType>
|
|
struct traits<Circulant<ArgType> >
|
|
{
|
|
typedef Eigen::Dense StorageKind;
|
|
typedef Eigen::MatrixXpr XprKind;
|
|
typedef typename ArgType::StorageIndex StorageIndex;
|
|
typedef typename ArgType::Scalar Scalar;
|
|
enum {
|
|
Flags = Eigen::ColMajor,
|
|
RowsAtCompileTime = ArgType::RowsAtCompileTime,
|
|
ColsAtCompileTime = ArgType::RowsAtCompileTime,
|
|
MaxRowsAtCompileTime = ArgType::MaxRowsAtCompileTime,
|
|
MaxColsAtCompileTime = ArgType::MaxRowsAtCompileTime
|
|
};
|
|
};
|
|
}
|
|
}
|