UNPKG

@graphty/algorithms

Version:

Graph algorithms library for browser environments implemented in TypeScript

19 lines 720 B
/** * @graphty/algorithms - Graph algorithms library for browser environments * * A comprehensive TypeScript library implementing fundamental graph algorithms * optimized for browser environments and visualization applications. */ // Core exports export { Graph } from "./core/graph.js"; // Algorithm exports export * from "./algorithms/index.js"; // Research algorithms exports (Priority 4) export * from "./research/index.js"; // Data structure exports export * from "./data-structures/index.js"; // Optimized algorithm exports export * from "./optimized/index.js"; // Note: Configuration exports have been removed. // The library now automatically optimizes based on graph size. //# sourceMappingURL=index.js.map