Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

49
votes
22answers
12k views

Is there a perfect algorithm for chess?

I was recently in a discussion with a non-coder person on the possibilities of chess computers. I'm not well versed in theory, but think I know enough. I argued that there could not exist a ...
21
votes
4answers
620 views

Has Anyone Tried to Implement or Participated in a “Productivity Game” at Work?

In The Practical Guide to Defect Prevention, the authors mention that one creative way to boost productivity in software development is to implement "productivity games" where employees compete ...
13
votes
2answers
378 views

C# Algorithmic Game Theory API

I recently came accross Gambit - http://www.gambit-project.org/doc/index.html - a C++ algorithmic game theory API. Is anyone aware of a .NET Game Theory Library?
11
votes
1answer
566 views

Game on the tree, cutting branch

We have a forest of rooted trees. Two players makes alternating moves accroding to the following rule: one move is to cut vertex and all its children. Player which makes last move (no vertices remain) ...
11
votes
2answers
332 views

Have you applied Game Theory on a project?

I haven't studied game theory, but it fascinates me. My intuition is that it isn't used by most "enterprise app" developers. However, it is clearly relevant to the large online sites (e.g. ...
9
votes
4answers
264 views

Strategies for for games with incomplete information

Are there general strategies for games with incomplete information, especially trick-taking games like Bridge and Doppelkopf? I am interested in ways to implement AI strategies for such games. The ...
7
votes
3answers
265 views

Resource placement (optimal strategy)

I know that this is not exactly the right place to ask this question, but maybe a wise guy comes across and has the solution. I'm trying to write a computer game and I need an algorithm to solve this ...
6
votes
4answers
562 views

How to win this game?

Support we have an n * m table, and two players play this game. They rule out cells in turn. A player can choose a cell (i, j) and rule out all the cells from (i,j) to (n, m), and who rules out the ...
6
votes
13answers
2k views

Prisoner's Dilemma Algorithm

After watching The Dark Knight I became rather enthralled with the concept of the Prisoner's Dilemma. There must be an algorithm that that maximizes one's own gain given a situation. For those that ...
5
votes
4answers
380 views

Resources about different Computer Science fields

I am going to begin my final year at university this September so I need to do a project for my dissertation. I had a look at the list with the projects suggested by the uni last year and I don't find ...
5
votes
7answers
902 views

Trying to build algorithm for optimal tower placement in a game

This is going to be a long post and just for fun, so if you don't have much time better go help folks with more important questions instead :) There is a game called "Tower Bloxx" recently released ...
4
votes
1answer
691 views

Did I implement this minimax function correctly?

It's for a game of checkers. See revision history for older versions of code. private static Move GetBestMove(Color color, Board board, int depth) { var bestMoves = new ...
4
votes
3answers
277 views

Whats the name of this game?

This is not a programming question per se, although the ultimate goal is to devise an algorithm. I'm looking for references or at least the name of a type of game. It is pretty widespread on ...
3
votes
1answer
79 views

Browsing existing open source projects to learn/improve class design and design patterns

I was thinking of looking into some open source projects to find examples of class design, design patterns, and maybe even some AI / algorithm stuff. I have had some people recommend against looking ...
3
votes
1answer
114 views

Partially re-create Risk-like game based on incomplete log files

I'm trying to re-create this conquerclub (Risk-like) game: http://conquerclub.barrycarter.info/ONEOFF/7460216.html In other words, I want to know who owned each territory at each point in time, ...
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
2answers
556 views

Creating A Board Game AI

I want to code a board game that name is Okey and mostly popular in Turkey. http://en.wikipedia.org/wiki/Okey But i have got some problems about AI. Firslty let me explain the game.. The game is ...
2
votes
4answers
279 views

Formula/Algorithm for Weighting Game Outcomes

I have an interesting conceptual problem, and I'm wondering if anyone can help me quantify it. Basically, I'm playing a set of games... and for each game I know the probability that I will win, the ...
2
votes
2answers
140 views

Most effecient way to compute a series of moves in peg solitaire

Given an arbitary peg solitaire board configuration, what is the most effecient way to compute any series of moves that results in the "end game" position. For example, the standard starting position ...
2
votes
3answers
342 views

Normalizing achievements with multiple sources

I'm looking for a good algorithm recommendation. I have Users and Achievements. Users create Achievements and then give them to other Users. Associated with each Achievement is the point value that ...
1
vote
2answers
178 views

Utilitarian vs. Egalitarian Allocation in Game Theory in AI

Let's say I have two players: Player A and Player B and they have preferences over what resources (let's just be general and use the term 'resource'). Their preferences could be: {p} {q} ...
1
vote
1answer
283 views

Nash equilibrium in Python

Is there a Python library out there that solves for the Nash equilibrium of two-person zero-games? I know the solution can be written down in terms of linear constraints and, in theory, scipy should ...
1
vote
2answers
170 views

What could cause this to start miscalculating after awhile?

I'm trying to implement NegaMax for a game of checkers. I'm just testing it with a depth of 0 right now, meaning the current player just evaluates all his moves without regard to what the other player ...
1
vote
2answers
349 views

Find optimal/good-enough strategy and AI for the game 'Proximity'?

'Proximity' is a strategy game of territorial domination similar to Othello, Go and Risk. Two players, uses a 10x12 hex grid. Game invented by Brian Cable in 2007. Seems to be a worthy game for ...
0
votes
1answer
226 views

how to make a game tutorial of flash game?

how to make a game tutorial as farmville game tutorial to teach the user to play the game. i have recently involve in make that kind of game tutorial for its user by actionscript 3, can anyone give me ...