class Graphunk::WeightedGraph

Attributes

weights[R]

Public Class Methods

new(hash = {}, weights = {}) click to toggle source
# File lib/graphunk/weighted_graph.rb, line 7
def initialize(hash = {}, weights = {})
  @representation = hash
  @weights = weights
end