UNPKG

@logic-pad/core

Version:
13 lines (12 loc) 591 B
import EventIteratingSolver from '../eventIteratingSolver.js'; import GridData from '../../grid.js'; export default class CspuzSolver extends EventIteratingSolver { private static readonly supportedInstrs; readonly id = "cspuz"; readonly author = "semiexp"; readonly description = "A blazingly fast WebAssembly solver that supports most rules and symbols (including underclued)."; protected createWorker(): Worker; isGridSupported(grid: GridData): boolean; isInstructionSupported(instructionId: string): boolean; isEnvironmentSupported(): Promise<boolean>; }