@graphty/algorithms
Version:
Graph algorithms library for browser environments implemented in TypeScript
23 lines • 612 B
TypeScript
/**
* Comprehensive benchmark suite for ALL 98 algorithms in @graphty/algorithms
*
* Two modes:
* - Full benchmark: Completes in under 1 hour
* - Quick benchmark: Completes in under 2 minutes
*/
interface BenchmarkResult {
algorithm: string;
category: string;
executionTime: number;
success: boolean;
error?: string;
nodeCount: number;
edgeCount: number;
mode: "quick" | "full";
}
/**
* Main benchmark runner
*/
export declare function runAllAlgorithmsBenchmark(mode?: "quick" | "full"): BenchmarkResult[];
export {};
//# sourceMappingURL=benchmark-all-algorithms.d.ts.map