Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
7answers
1k views

How do I create a good evaluation function for a new board game?

I write programs to play board game variants sometimes. The basic strategy is standard alpha-beta pruning or similar searches, sometimes augmented by the usual approaches to endgames or openings. ...
2
votes
1answer
176 views

How can I create an evaluation function for Hijara game (game explained below)?

I have to implement an intelligent version of Hijara Game in Prolog. You can play the game and learn the rules in the following link: http://www.sapphiregames.com/online/hijara.php I will use Alpha ...
0
votes
3answers
1k views

How to rate a connect four game situation in java

I am trying to write a simple AI for a "Get four" game. The basic game principles are done, so I can throw in coins of different color, and they stack on each other and fill a 2D Array and so on and ...