/** * SimulationInterpreter — Rules-based insight generation from solver results. * * Takes solver stats + field data and produces structured, human-readable * insights with severity, category, and recommendations. * * No LLM required — pure rules engine covering the most common * engineering assessments across all solver types. */ export type InsightSeverity = 'info' | 'warning' | 'critical'; export type InsightCategory = 'convergence' | 'safety' | 'accuracy' | 'performance' | 'stability'; export interface SimulationInsight { severity: InsightSeverity; category: InsightCategory; message: string; detail: string; recommendation: string; } /** * Analyze simulation results and generate insights. * Works with any solver's stats output. */ export declare function interpretResults(stats: Record): SimulationInsight[]; //# sourceMappingURL=SimulationInterpreter.d.ts.map