UNPKG

@crstrskp/graph

Version:

High-performance TypeScript graph algorithms library optimized for trading bots and arbitrage detection

8 lines 266 B
import { Vertex } from "./Vertex"; import { Path } from './Path'; export interface IGraphSearch { bellmanFord(v: Vertex): any; bmf_negativeCycles(): any; dijkstra_shortestPath(src: Vertex, dest: Vertex): Path; } //# sourceMappingURL=IGraphSearch.d.ts.map