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);
}
}
}
}
}