class ReachabilityGraph::Node

Public Class Methods

new(graph, options = {}) { |self| ... } click to toggle source
Calls superclass method PetriNet::Graph::Node::new
# File lib/petri_net/reachability_graph/node.rb, line 2
def initialize(graph, options = {}, &block)
    super(graph, options)
    yield self unless block.nil?
end