import { Result } from '../../algorithms/types/result.js'; import { BenchmarkGraphExpander } from '../evaluation/__tests__/validation/common/benchmark-graph-expander.js'; /** * Configuration for Random Path Ranking SUT. */ export interface RandomRankingConfig { /** Maximum number of paths to return */ maxPaths?: number; /** Random seed for reproducibility */ seed?: number; } /** * Random ranking result. */ export interface RandomRankingResult { pathsFound: number; meanMI: number; stdMI: number; pathDiversity: number; hubAvoidance: number; nodeCoverage: number; meanScore: number; stdScore: number; paths: Array<{ id: string; nodes: string[]; mi: number; }>; } /** * Random Path Ranking SUT (statistical null hypothesis). * * Ranks paths between source and target nodes using random selection. */ export declare class RandomRankingSUT { readonly id = "random-ranking-v1.0.0"; readonly config: Readonly>; private readonly expander; private readonly source; private readonly target; private readonly rankingConfig; constructor(expander: BenchmarkGraphExpander, inputs: readonly string[], config?: RandomRankingConfig); /** * Execute random path ranking. */ run(): Promise>; /** * Create an empty result (no paths found). */ private createEmptyResult; } //# sourceMappingURL=random-ranking-sut.d.ts.map