Sorry if this is a silly question but I am confused. Negamax at the very beginning checks whether an end state or a maximum depth has been reached. You then insert a evaluation function which returns a negative or positive score for the state (one being good for one side and bad for the other and vice versa). What I find hard to get my head round is the negation below. Does that mean score returned is multiplied by -1? What does this achieve? I appreciate leaf sates 'bubble' back up alternating between minimum/maximum scores.
line: -NegaMax(c, depth+1, 1-color)
I have no idea why you would be incrementing the depth. Negamax maximizes the current players position. When you preform a search you should call
-negamax(position,depth-1)
. When make a move you wanna reverse the eval score on each move. For example, if its white to move then the eval should be regular, and if black is to move then the eval should score blacks pieces as positive values soif (turn == black) then eval = -eval
. You do this becuase the negamax algo maximizes the players score.