# File lib/rgl/adjacency.rb, line 90 90: def add_edge (u, v) 91: add_vertex(u) # ensure key 92: add_vertex(v) # ensure key 93: basic_add_edge(u, v) 94: end