| 49 | |
| 50 | template<typename B> |
| 51 | EIGEN_DONT_INLINE void call_ref_3(const Ref<const SparseMatrix<float>, StandardCompressedFormat>& a, const B &b) { |
| 52 | VERIFY(a.isCompressed()); |
| 53 | VERIFY_IS_EQUAL(a.toDense(),b.toDense()); |
| 54 | } |
| 55 | |
| 56 | template<typename B> |
| 57 | EIGEN_DONT_INLINE void call_ref_4(Ref<SparseVector<float> > a, const B &b) { VERIFY_IS_EQUAL(a.toDense(),b.toDense()); } |
no test coverage detected