import { SUT, SutRegistration } from 'ppef/types/sut'; import { BenchmarkGraphExpander } from '../experiments/evaluation/__tests__/validation/common/benchmark-graph-expander.js'; /** * Configuration for Shortest Path Ranking SUT. */ export interface ShortestRankingConfig { /** Maximum number of paths to return */ maxPaths?: 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; } /** * Shortest ranking result. */ export interface ShortestRankingResult { pathsFound: number; meanLength: number; meanMI: number; stdMI: number; pathDiversity: number; hubAvoidance: number; nodeCoverage: number; meanScore: number; stdScore: number; paths: Array<{ id: string; nodes: string[]; length: number; }>; } /** * SUT registration metadata. */ export declare const registration: SutRegistration; /** * Create a Shortest Ranking SUT instance. * @param config */ export declare const createSut: (config?: Record) => SUT; //# sourceMappingURL=shortest-ranking-v1.0.0.d.ts.map