#include <boost/la/matrix_eq_matrix.hpp>
namespace
boost
{
namespace
la
{
//Only enabled if:
// is_matrix<A>::value && is_matrix<B>::value &&
// matrix_traits<A>::rows==matrix_traits<B>::rows &&
// matrix_traits<A>::cols==matrix_traits<B>::cols
template <class A,class B>
bool
operator==( A const & a, B const & b );
}
}
true if each element of a compares equal to its corresponding element of b, false otherwise.