0.0.0 • Published 11 years ago

i-graph v0.0.0

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

i-graph

The I graph construction gives a family of graphs which generalize the generalized Petersen graph. These graphs make for interesting test cases for various graph algorithms.

Example

var I = require("i-graph")

//First make a Petersen graph:
var petersen = I(5, 2)

//Now make a more complicated graph
var circ = I(9, 6, 3)

require("i-graph")(n, k, j)

Constructs a generalized-generalized Petersen graph.

  • n is the number of vertices
  • k is the step for the inner star polygon
  • j (optional) is the step for the outer star polygon. If not specified, assume 1 and generate a generalized Petersen graph.

Returns The edges of a generalized Petersen graph.

Credits

(c) 2013 Mikola Lysenko. MIT License