/** * Fast, deterministic evaluation. * * Design goals: * - Cheap (called at every leaf). * - Stable (no expensive strategic features). * - Returns a score from the perspective of `playerColor`. */ import { InternalBoard, InternalColor } from '../types'; import { Score } from '../types/ai.types'; export declare const SCORE_MIN: Score; export declare const SCORE_MAX: Score; export declare class Evaluator { static evaluate(board: InternalBoard, playerColor: InternalColor, plyFromRoot?: number): Score; } //# sourceMappingURL=Evaluator.d.ts.map