Lines Matching refs:SparseMatrix
50 if(internal::is_same<SparseMatrixType,SparseMatrix<Scalar,Flags> >::value)
260 typedef SparseMatrix<bool, SparseMatrixType::Options, typename SparseMatrixType::StorageIndex> SpBool;
652 CALL_SUBTEST_1(( sparse_basic(SparseMatrix<double>(1, 1)) ));
653 CALL_SUBTEST_1(( sparse_basic(SparseMatrix<double>(8, 8)) ));
654 CALL_SUBTEST_2(( sparse_basic(SparseMatrix<std::complex<double>, ColMajor>(r, c)) ));
655 CALL_SUBTEST_2(( sparse_basic(SparseMatrix<std::complex<double>, RowMajor>(r, c)) ));
656 CALL_SUBTEST_1(( sparse_basic(SparseMatrix<double>(r, c)) ));
657 CALL_SUBTEST_5(( sparse_basic(SparseMatrix<double,ColMajor,long int>(r, c)) ));
658 CALL_SUBTEST_5(( sparse_basic(SparseMatrix<double,RowMajor,long int>(r, c)) ));
666 CALL_SUBTEST_6(( sparse_basic(SparseMatrix<double,ColMajor,short int>(short(r), short(c))) ));
667 CALL_SUBTEST_6(( sparse_basic(SparseMatrix<double,RowMajor,short int>(short(r), short(c))) ));
671 CALL_SUBTEST_3((big_sparse_triplet<SparseMatrix<float, RowMajor, int> >(10000, 10000, 0.125)));
672 CALL_SUBTEST_4((big_sparse_triplet<SparseMatrix<double, ColMajor, long int> >(10000, 10000, 0.125)));
678 SparseMatrix<std::complex<double>,0, long> mat(n, n);