Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
256 views

Algorithm for the game of Chomp

I am writing a program for the game of Chomp. You can read the description of the game on Wikipedia, however I'll describe it briefly anyway. We play on a chocolate bar of dimension n x m, i.e. the ...
6
votes
4answers
1k views

Minimax algorithm

I have a simple question regarding the Minimax algorithm: for example for the tic-tac-toe game, how do I determine the utility function's for each player plays? It doesn't do that automatically, does ...
4
votes
1answer
234 views

Minimax implement in “Prolog Programming for Artificial Intelligence” - what are min_to_move/1 and max_to_move/1?

Let me start by saying that this question can possibly be answered by AI wizards with no Prolog experience. The excellent Prolog Programming for Artificial Intelligence book has this quite terse and ...
4
votes
1answer
721 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
2answers
1k views

How does minimax work?

Here's the case. I'm trying to make a Chess engine. Not that I believe that I can make anything better than what's already out there, but I want to see how it works. I've made some of the important ...
3
votes
3answers
2k views

Minimax explained for an idiot

I've wasted my entire day trying to use the minimax algorithm to make an unbeatable tictactoe AI. I missed something along the way (brain fried). I'm not looking for code here, just a better ...
3
votes
5answers
251 views

Gomoku: limited time to search

I'm creating a C program to play Gomoku. It uses Minimax search to decide on the best move. However, it can only search for the best move for 10 seconds. How to I determine when my search function has ...
3
votes
1answer
231 views

Implementing custom comparison with CustomComparison and CustomEquality in F# tuple

I'm here to ask a specific topic - I really found few info about this on the web. I'm implementing a F# version of Minimax algorithm. The problem I'm having now is that I want to compare Leaf of my ...
3
votes
3answers
819 views

Minimax algorithm: Cost/evaluation function?

A school project has me writing a Date game in C++ (example at http://www.cut-the-knot.org/Curriculum/Games/Date.shtml) where the computer player must implement a Minimax algorithm with alpha-beta ...
3
votes
2answers
1k views

minimax depth first search game tree

I want to build a game tree for nine men's morris game. I want to apply minimax algorithm on the tree for doing node evaluations. Minimax uses DFS to evaluate nodes. So should I build the tree first ...
2
votes
1answer
81 views

Understanding the minimax/maximin paths (Floyd-Warshall)

I've implemented the Floyd-Warshall-Algorithm to solve the All-pairs shortest path problem. Now I found out I can also compute the minimax or maximin path with easy modifications. But I don't ...
2
votes
1answer
143 views

Minimax with Alpha-beta pruning, getting the result

I have followed the pseducode on the wikipedia article, and I think I got it working. However, it returns the score, and that doesn't exactly help when I want to know what move I want to make. I ...
2
votes
4answers
348 views

Alpha-beta pruning for Minimax

I have spent a whole day trying to implement minimax without really understanding it. Now, , I think I understand how minimax works, but not alpha-beta pruning. This is my understanding of minimax: ...
2
votes
3answers
662 views

NegaMax Algorithm and TicTacToe…What's wrong?

I am new to game tree algorithms, and i've tried to implement a simple tictactoe game which utilizes the NegaMax algorithm to evaluate tile scores for the computer AI player. However, the AI behaves ...
2
votes
2answers
325 views

How to implement Pentago AI algorithm

i'm trying to develop Pentago-game in c#. right now i'm having 2 players mode which working just fine. the problem is, that i want One player mode (against computer), but unfortunately, all ...
2
votes
2answers
607 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
1answer
528 views

Minimax algorithm with/without Alpha-Beta Pruning

Can the minimax algorithm with alpha-beta pruning yield a different answer than minimax without pruning?
2
votes
6answers
756 views

Tic-Tac-Toe: How to populate decision tree?

I'm making a Tic-Tac-Toe program. I plan to use minimax with it. I made a tree with space for all possible game sequences and I'm looking for a way to populate it. I currently have this type: typedef ...
2
votes
5answers
1k views

C++ minimax function

I have searched Google and Stackoverflow for this question, but I still don't understand how a minimax function works. I found the wikipedia entry has a pseudocode version of the function: function ...
2
votes
2answers
947 views

Checkers/draughts using minimax in C#

I have homework in c#. I have to make a game (such as checkers, chess or something else, but not tic tac toe - and I choose checkers/draughts) with using minimax and alphabeta, but I don't even know ...
2
votes
3answers
260 views

How to return the best first level in this F# minimax?

This question is more a semantic-algorithmic-data-structure question than a F# syntactically question. I have a Minimax algorithm. The minimax algorithm should return the best next move, from a start ...
1
vote
1answer
83 views

Using MATLAB to find Miximax Polynomial Approximation of Trigonometric Functions

I am trying to find the minimax polynomial approximation for sine and cosine using the remez exchange algorithm in MATLAB. The need precision out to 23 bits because I am implementing the sine and ...
1
vote
1answer
25 views

Is Negamax always supposed to return a positive value?

function negamax(node, depth, α, β, color) if node is a terminal node or depth = 0 return color * the heuristic value of node else foreach child of node val := ...
1
vote
1answer
105 views

Othello Alpha-Beta Pruning playing badly python

I am currently trying to make a good AI for Othello, and have done so using the Minimax algorithm. However, when I tried to make a deeper search using alpha-beta pruning, it seemed like the algorithm ...
1
vote
1answer
107 views

Pruning Algorithm

I was having a headache understanding why certain nodes on a lesson example were being printed as a result of alpha-beta pruning, so I implemented Peter Norvig's version of alpha beta pruning in Java. ...
1
vote
1answer
159 views

Implement Minimax without recursion

I am buiding a Tic Tac Toe solving robot. For practise, I wrote a Tic Tac Toe game using the minimax algorithm which worked very well. When I wanted to port my code to the controller, I found out that ...
1
vote
0answers
158 views

Python minimax for tictactoe

After completely failing the minimax implementation for tic tac toe, I fail to see what's wrong. Right now, my AI just goes around in a circle... import collections class ...
1
vote
3answers
140 views

What is it that I don't understand about the minimax algorithm

I have a question about the minimax algorithm. Lets say I have the following game tree, and I've added some random heuristic values to it. As I've understood the minimax algorithm, it will choose ...
1
vote
2answers
780 views

A good Minimax representation in Gomoku?

I am trying to code a Gomoku (five in a row) game in Java as an individual project. For the AI, I understand that the use of a Minimax function with Alpha-beta Pruning is a good way to approach this. ...
1
vote
3answers
209 views

How to simulate battle between two players?

I've got two players and I want to simulate a game between them. Both have some attributes (power, intelligence...) and different actions. The outcome of some action is based on attribute values and ...
1
vote
0answers
536 views

Minimax operations on nested lists in Scheme/Racket/Lisp?

I'm trying to write a function to analyze game trees. The trees are represented by nested lists where each sub-list represents a branch. Basically, there are two things I want to figure out: what is ...
1
vote
1answer
288 views

Evaluation function of an abstract strategy game

I'm coding an abstract strategy game with C# & XNA. As for the AI, I'm currently using Negascout and a depth of 5. The following is the description of the game: The game consists of a board of ...
1
vote
1answer
176 views

game search tree, Do I have to build the tree first?

in game search tree there are many algorithms to get the optimal solution, like minimax algorithm. I start learn how to solve this problem with minimax algorithm, the algorithm clear. but I'm confused ...
1
vote
3answers
1k views

Minimax: how can I implement it in Python?

As long as I've been a programmer I still have a very elementary level education in algorithms (because I'm self-taught). Perhaps there is a good beginner book on them that you could suggest in your ...
1
vote
2answers
157 views

Minimax use already evaluated tree. Where is my flaw?

I just started trying to use the minimax/negamax algorithm and I came up with an idea that sounds good for me, but as nobody is using it it might be a flawed logic. Why don't we do this: Create a ...
1
vote
1answer
1k views

Determining time and space complexity

I am having some trouble determining space and time complexities. For example, if I have a tree that has a branching factor b and will have at most a depth d, how can I calculate the time and space ...
0
votes
2answers
64 views

Minmax algorithm only winning when the move is in direct sight. Otherwise always allowing the player to win

I've been pulling my hair for three days trying to figure out what has gone wrong in what little code I have in my first attempt at both the minimax algorithm, and recursive calls in general (I'm ...
0
votes
1answer
59 views

Minimax/ Alpha beta pruning Move Ordering?

I've read (for example, http://radagast.se/othello/Help/order.html) that searching on the best moves at each level first (which can be found using iterative deepening) makes the search go much faster. ...
0
votes
3answers
82 views

c minimax using posix threads

I am writing program with POSIX threads to find minimax in integer array. My question is how can I determine how many threads do I need to and is it correct to output minimum and maximum inside the ...
0
votes
1answer
89 views

Recursive population of tree

I've been attempting to create and populate a tree in java, and then use the minimax algorithm to find the best course for an AI. Recursive function to generate tree: public void gen(Node n, int ...
0
votes
1answer
167 views

Minimax with Alpha-Beta pruning; class variables or sending them through the recursion?

When using Minimax with Alpha-Beta pruning, is it possible to have alpha and beta as class variables instead of sending them through the recursion? Instead of: private ValuedMove ...
0
votes
2answers
181 views

negamax algorithm for a 3-in-a-row game on a 3x4 grid (rows x columns)

I'm struggling with the negamax-algorithm for 3-in-a-row game on a 3x4 (rows x columns) grid. It is played like the well known 4-in-a-row, i.e. the pieces are dropped (NOT like TicTacToe). Let's call ...
0
votes
1answer
60 views

minimax: what happens if min plays not optimal

the description of the minimax algo says, that both player have to play optimal, so that the algorithm is optimal. Intuitively it is understandable. But colud anyone concretise, or proof what happens ...
0
votes
1answer
417 views

Tic Tac Toe C++ algorithm debugging help

Please help me understand why this isn't working. I don't know if there is a bug in my code, or whether my algorithm is fundamentally logically flawed. My algorithm is based on minimax, but I've ...
0
votes
0answers
179 views

Error while creating recursive n-ary tree

In this question, I was making a NxN tic-tac-toe with Minimax algorithm. The problem: I tried to generate an n-ary tree which each of its node is a "state"( a class which pretty mcuh contains the ...
0
votes
1answer
249 views

Is this implementation of the negamax algorithm correct

I'm trying to implement the negamax algorithm, and this is how I thought it should be: public Move getBestMove(Board board){ List<Move> possibleMoves = board.getPossibleMoves(); Move ...
0
votes
1answer
182 views

utility functions minimax search

Hi I'm confused how you can determine the utility functions on with a minimax search Explain it with any game that you can use a minimax search with Basically i am asking how do you determine the ...
0
votes
3answers
91 views

Passing by reference ruining everything :(

Hey people i have this structure for the search tree class State { //CLASS STATE int value; char[][] state; //the game Grid State child[]; // children of current state, maximum is 8 ...
0
votes
1answer
496 views

Minimax / Alpha Beta Algorithm - Finding the AI's move in Gomoku

I understand that a Minimax decision tree is a good approach to implementing an AI for a board game. Currently, I am trying to implement a game called Gomoku (5 in a row). But there is one thing that ...
0
votes
1answer
178 views

Adjusting weights for evaluation function

I have coded some AI for connect-4. I would like to adjust the weights in certain evaluation functions. I have limited time and hardware so my question is this: Is it very bad with respect to quality ...

1 2