Home | History | Annotate | Download | only in test

Lines Matching defs:MatrixType

44 template<typename MatrixType>
45 void check_stdlist_matrix(const MatrixType& m)
47 typename MatrixType::Index rows = m.rows();
48 typename MatrixType::Index cols = m.cols();
49 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols);
50 std::list<MatrixType> v(10, MatrixType(rows,cols)), w(20, y);
51 typename std::list<MatrixType>::iterator itv = get(v, 5);
52 typename std::list<MatrixType>::iterator itw = get(w, 6);
76 MatrixType* ref = &(*get(w, 0));
88 typedef typename TransformType::MatrixType MatrixType;
89 TransformType x(MatrixType::Random()), y(MatrixType::Random());