UNPKG

@graphty/algorithms

Version:

Graph algorithms library for browser environments implemented in TypeScript

8 lines 419 B
/** * Graph matching algorithms */ export type { BipartiteMatchingOptions, BipartiteMatchingResult } from "./bipartite.js"; export { bipartitePartition, greedyBipartiteMatching, maximumBipartiteMatching } from "./bipartite.js"; export type { IsomorphismOptions, IsomorphismResult } from "./isomorphism.js"; export { findAllIsomorphisms, isGraphIsomorphic } from "./isomorphism.js"; //# sourceMappingURL=index.d.ts.map