class Mementus::MutableGraph

Public Class Methods

new() click to toggle source
# File lib/mementus/mutable_graph.rb, line 5
def initialize
  @structure = Structure::IncidenceList.new(true)
  @node_ids = IntegerId.new
  @edge_ids = IntegerId.new
end