import { SUT, SutRegistration } from 'ppef/types/sut'; import { BenchmarkGraphExpander } from '../experiments/evaluation/__tests__/validation/common/benchmark-graph-expander.js'; /** * Configuration for Random Ranking SUT. */ export interface RandomRankingConfig { /** Maximum number of paths to return */ maxPaths?: number; /** Random seed for reproducibility */ seed?: number; } /** * Ranking inputs for this SUT. */ export interface RankingInputs { /** Graph expander for path discovery */ input: BenchmarkGraphExpander; /** Source node ID */ source: string; /** Target node ID */ target: string; } /** * 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; }>; } /** * SUT registration metadata. */ export declare const registration: SutRegistration; /** * Create a Random Ranking SUT instance. * @param config */ export declare const createSut: (config?: Record) => SUT; //# sourceMappingURL=random-ranking-v1.0.0.d.ts.map