18namespace seqan3::detail
23template <
typename score_type>
32template <
typename matrix_t>
34 typename std::remove_cvref_t<matrix_t>::value_type;
36 typename std::remove_cvref_t<matrix_t>::reference;
38 typename std::remove_cvref_t<matrix_t>::size_type;
49#if SEQAN3_DOXYGEN_ONLY(1) 0
50template <
typename matrix_t>
93template <matrix matrix1_t, matrix matrix2_t>
95inline bool operator==(matrix1_t
const & lhs, matrix2_t
const & rhs)
noexcept
97 if (lhs.rows() != rhs.rows())
100 if (lhs.cols() != rhs.cols())
103 for (
size_t row = 0u; row < lhs.rows(); ++row)
104 for (
size_t col = 0u; col < lhs.cols(); ++col)
105 if (matrix_coordinate co{row_index_type{row}, column_index_type{col}}; lhs.at(co) != rhs.at(co))
117template <matrix matrix1_t, matrix matrix2_t>
119inline bool operator!=(matrix1_t
const & lhs, matrix2_t
const & rhs)
noexcept
121 return !(lhs == rhs);
Provides seqan3::detail::matrix_index, seqan3::detail::matrix_coordinate and associated strong types.