calcitem/Sanmill

assert(ss.length() < 127);

calcitem opened this issue · 0 comments

    // Loop through the moves until no moves remain or a beta cutoff occurs
    for (int i = 0; i < moveCount; i++) {
        ss.push(*pos);
        assert(ss.length() < 127);
        //std::cout << ss.length() << " ";
        const Color before = pos->sideToMove;
        const Move move = mp.moves[i].move;