Home | History | Annotate | Download | only in test

Lines Matching defs:MatrixType

28 template<typename MatrixType>
29 void check_stdvector_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::vector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y);
51 VERIFY((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(MatrixType));
55 MatrixType* ref = &w[0];
67 typedef typename TransformType::MatrixType MatrixType;
68 TransformType x(MatrixType::Random()), y(MatrixType::Random());