UNPKG

@logic-pad/core

Version:
15 lines (14 loc) 407 B
import RegionShapeBTModule from './regionShape.js'; export default class SameShapeBTModule extends RegionShapeBTModule { instr; constructor(instr) { super(instr); this.instr = instr; } checkGlobal(grid) { const regions = this.getShapeRegions(grid); return regions.length <= 1 ? { tilesNeedCheck: null, ratings: null } : false; } }