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
625 B
19 lines
625 B
namespace StormEigen {
|
|
namespace internal {
|
|
template <class ArgType>
|
|
struct traits<Circulant<ArgType> >
|
|
{
|
|
typedef StormEigen::Dense StorageKind;
|
|
typedef StormEigen::MatrixXpr XprKind;
|
|
typedef typename ArgType::StorageIndex StorageIndex;
|
|
typedef typename ArgType::Scalar Scalar;
|
|
enum {
|
|
Flags = StormEigen::ColMajor,
|
|
RowsAtCompileTime = ArgType::RowsAtCompileTime,
|
|
ColsAtCompileTime = ArgType::RowsAtCompileTime,
|
|
MaxRowsAtCompileTime = ArgType::MaxRowsAtCompileTime,
|
|
MaxColsAtCompileTime = ArgType::MaxRowsAtCompileTime
|
|
};
|
|
};
|
|
}
|
|
}
|