UNPKG

@graphty/algorithms

Version:

Graph algorithms library for browser environments implemented in TypeScript

6 lines 249 B
/** * Graph matching algorithms */ export { bipartitePartition, greedyBipartiteMatching, maximumBipartiteMatching } from "./bipartite.js"; export { findAllIsomorphisms, isGraphIsomorphic } from "./isomorphism.js"; //# sourceMappingURL=index.js.map