Home | History | Annotate | Download | only in test

Lines Matching defs:MatrixType

28 template<typename MatrixType>
29 void check_stddeque_matrix(const MatrixType& m)
31 typename MatrixType::Index rows = m.rows();
32 typename MatrixType::Index cols = m.cols();
33 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols);
34 std::deque<MatrixType> v(10, MatrixType(rows,cols)), w(20, y);
54 MatrixType* ref = &w[0];
66 typedef typename TransformType::MatrixType MatrixType;
67 TransformType x(MatrixType::Random()), y(MatrixType::Random());