import { Result } from '../../algorithms/types/result.js'; import { BenchmarkGraphExpander } from '../evaluation/__tests__/validation/common/benchmark-graph-expander.js'; /** * Configuration for Jaccard Arithmetic Ranking SUT. */ export interface JaccardArithmeticRankingConfig { /** Maximum number of paths to return */ maxPaths?: number; /** Traversal mode: 'directed' or 'undirected' */ traversalMode?: "directed" | "undirected"; } /** * Jaccard arithmetic ranking result. */ export interface JaccardArithmeticRankingResult { pathsFound: number; meanMI: number; stdMI: number; pathDiversity: number; hubAvoidance: number; nodeCoverage: number; meanScore: number; stdScore: number; paths: Array<{ id: string; nodes: string[]; mi: number; }>; } /** * Jaccard Arithmetic Ranking SUT (baseline). * * Ranks paths between source and target nodes by Jaccard arithmetic similarity. */ export declare class JaccardArithmeticRankingSUT { readonly id = "jaccard-arithmetic-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?: JaccardArithmeticRankingConfig); /** * Execute Jaccard arithmetic path ranking. */ run(): Promise>; /** * Create an empty result (no paths found). */ private createEmptyResult; } //# sourceMappingURL=jaccard-arithmetic-ranking-sut.d.ts.map