private noBit(col: number, row: number): boolean {
    return this.bits[row * this.numcols + col] === 2;
  }