Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
/* Evaluates a given board state based on the ratio of pieces
the player has out of the total alive pieces on the board */
public class Evaluator00 implements Evaluator {
public double evaluate(CheckersGameState s, int player){
CheckersGameState3 gs = (CheckersGameState3) s;
return gs.pieceRatio(player);
}
}