Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

simplicial-cartesian-product

mikolalysenko5MIT0.0.0

Cartesian product of simplicial complexes

cartesian, product, simplicial, complex, topology, geometry, math, graph, edge, vertex

readme

simplicial-cartesian-product

Constructs the cartesian product of two graphs. (Not to be confused with the tensor/categorical product.)

Install

npm install simplicial-cartesian-product

Example

var prod = require("simplicial-cartesian-product")
console.log(prod([[0,1]], [[0,1]]))

require("graph-cartesian-product")(a, b)

Given a pair of simplicial complexes, produces their cartesian product.

Returns: The cartesian product of a and b. New vertex coordinates are of the form a_index + b_index * countVertices(a)

Credits

(c) 2013 Mikola Lysenko. MIT License