Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have problems creating alpha-beta code for orthello with 3 rounds prediction. Could someone help? This is what I have so far:

void findPossibleMoves(char player){

//Daten aus vorhergehenden Durchlauf löschen
posMoves.clear();

// TODO <= Problem
for(int i = 0; i < g_rows; i++)
{
    for(int j = 0; j < g_cols; j++)
    {
        if (g_PlayingField[i][j] == ' ')
        {           
            if (checkNord(i,j,player) == true ||
                checkNordOst(i,j,player) == true ||
                checkOst(i,j,player) == true ||
                checkSuedOst(i,j,player) == true ||
                checkSued(i,j,player) == true ||
                checkSuedWest(i,j,player) == true ||
                checkWest(i,j,player) == true ||
                checkNordWest(i,j,player) == true)
            {
                g_Field temp = {i,j};
                posMoves.push_back(temp);
            }
        }
    }

}
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.