Skip to content
Permalink
daa9992ce5
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
11 lines (8 sloc) 318 Bytes
/* 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){
CheckersGameState3 gs = (CheckersGameState3) s;
return gs.pieceRatio();
}
}