Lines Matching refs:SparseMatrix
45 EIGEN_DONT_INLINE void call_ref_1(Ref<SparseMatrix<float> > a, const B &b) { VERIFY_IS_EQUAL(a.toDe… in call_ref_1()
48 EIGEN_DONT_INLINE void call_ref_2(const Ref<const SparseMatrix<float> >& a, const B &b) { VERIFY_IS… in call_ref_2()
51 EIGEN_DONT_INLINE void call_ref_3(const Ref<const SparseMatrix<float>, StandardCompressedFormat>& a… in call_ref_3()
64 SparseMatrix<float> A = MatrixXf::Random(10,10).sparseView(0.5,1); in call_ref()
65 SparseMatrix<float,RowMajor> B = MatrixXf::Random(10,10).sparseView(0.5,1); in call_ref()
66 SparseMatrix<float> C = MatrixXf::Random(10,10).sparseView(0.5,1); in call_ref()
68 const SparseMatrix<float>& Ac(A); in call_ref()
69 Block<SparseMatrix<float> > Ab(A,0,1, 3,3); in call_ref()
70 const Block<SparseMatrix<float> > Abc(A,0,1,3,3); in call_ref()
73 SparseMatrix<float> AA = A*A; in call_ref()
96 Ref<SparseMatrix<float> > Ar(A); in call_ref()
101 Ref<SparseMatrix<float,RowMajor> > Br(B); in call_ref()
106 Ref<const SparseMatrix<float> > Arc(A); in call_ref()
132 CALL_SUBTEST_1( check_const_correctness(SparseMatrix<float>()) ); in test_sparse_ref()
133 CALL_SUBTEST_1( check_const_correctness(SparseMatrix<double,RowMajor>()) ); in test_sparse_ref()