@graphty/algorithms
Version:
Graph algorithms library for browser environments implemented in TypeScript
9 lines (7 loc) • 377 B
text/typescript
/**
* 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";