Game Rules:

The game "Reversi" is played by two players on a 8x8 rectangle board with square tiling. 
All players play with null The following pieces are neutral: Discs, with a 1 on one side and a 2 on the other side.
Players take turns moving.
Setup:
     Place a Disc for player zero at board [27,36].
     Place a Disc for player zero at board [28,35].
Rules: 
     Each turn, where the site is within the set of empty cells, for all flanked pieces on Cells starting from current site with Adjacent direction with a limit of 1000 pieces if the target is there is an enemy State at between if the friend is is a friendadd Disc0, then flip piece in between, then set score of 1 to the number of sites in all sites with a state value of 1 and set score of 2 to the number of sites in all sites with a state value of 2.
Aim: 
     If all players have passed, the game ends and the player with the highest score wins.


Game Heuristics:

All Players:

mobility simple
Number of legal moves.
You should try to maximise the number of moves you can make (very low importance)

influence
Number of legal moves with distinct destination positions.
You should try to maximise the number of spaces you can move to (very high importance)

score
Score variable of game state corresponding to player.
You should try to maximise your score (very low importance)


Board Setup:




Game Endings:


Moves:

Piece: Disc

Move: For all flanked pieces on Cells starting from current site with Adjacent direction with a limit of 1000 pieces if the target is there is an enemy State at between if the friend is is a friendadd Disc0, then flip piece in between, then set score of 1 to the number of sites in all sites with a state value of 1 and set score of 2 to the number of sites in all sites with a state value of 2