# File lib/rgl/adjacency.rb, line 75
75:     def has_edge? (u, v)
76:       has_vertex?(u) and @vertice_dict[u].include?(v)
77:     end