Searched refs:getQueenRow (Results 1 – 1 of 1) sorted by relevance
16 constexpr int getQueenRow(int Col) const { in getQueenRow() function24 getQueenRow(CheckCol) == Row ? false : in okRecurse()25 getQueenRow(CheckCol) == Row + (Col - CheckCol) ? false : in okRecurse()26 getQueenRow(CheckCol) == Row + (CheckCol - Col) ? false : in okRecurse()30 return getQueenRow(Col) == Row; in at()