# File lib/rgl/adjacency.rb, line 104
104:     def add_edge (u, v)
105:       add_vertex(u)                         # ensure key
106:       add_vertex(v)                         # ensure key
107:       basic_add_edge(u, v)
108:     end