UNPKG

ts-ds-tool

Version:

Data structure and algorithm of TypeScript

6 lines (5 loc) 147 B
import { Graph } from "../../../graph/Graph"; export declare function tspBranchAndBound<T>(graph: Graph<T>): { cost: number; path: any; };