# File lib/matrix.rb, line 400
  def ==(other)
    return false unless Matrix === other
    
    other.compare_by_row_vectors(@rows)
  end