Method: NetworkX::Graph.cubical_graph

Defined in:
lib/networkx/others/generators.rb

.cubical_graphObject



152
153
154
155
156
# File 'lib/networkx/others/generators.rb', line 152

def self.cubical_graph
  graph = circular_ladder_graph(4)
  graph.graph[:name] = 'cubical_graph'
  graph
end