| 19 | { |
| 20 | |
| 21 | bool operator==(const SPLINTER::SparseMatrix &lhs, const SPLINTER::SparseMatrix &rhs) |
| 22 | { |
| 23 | return SPLINTER::DenseMatrix(lhs) == SPLINTER::DenseMatrix(rhs); |
| 24 | } |
| 25 | |
| 26 | bool operator==(const SPLINTER::SparseVector &lhs, const SPLINTER::SparseVector &rhs) |
| 27 | { |
nothing calls this directly
no test coverage detected