a concept used in artificial intelligence/game theory for two-player games. The idea is to minimize the opponent's gain and maximize yours. Questions using this tag cover problems understanding/implementing the algorithm.
1
vote
0answers
35 views
Bug with minimax/computer move selection (TicTacToe/Javascript)?
I'm trying to implement a single player tic tac toe game in which the computer player never loses (forces a draw or wins every time). After searching around it seems using the minimax strategy is ...
1
vote
1answer
29 views
How to adapt my Minimax search tree to deal with no term based game
Good day,
I have to do a project where we need to implement mancala board game, and then also implement the AI for it.
We have been instructed that we need to modify or change a minimax tree to be ...
1
vote
2answers
35 views
Minimax tree where a player can move multiple times in a row
Having played around with turn-based games using Minimax and Alpha-Beta Pruining, how would one handle games where the same player can have multiple consecutive moves if some condition is met?
0
votes
1answer
23 views
Artificial player evaluation
I have a problem concerning a board game I'm creating. I plan on making an artificial player for the game using MiniMax with AlphaBeta prunning, but I'm not sure how to evaluate ir the player is good ...
1
vote
1answer
55 views
Finding a boundary in a density plot
I am very new to machine learning so I am open to suggestions as well. I read something called minimax risk today and I was wondering if this is possible in my case.
I have two datasets and am ...
-3
votes
0answers
66 views
Minimax not optimal
I am writing tic tac toe program in Java, using Minimax algorithm, which has some kind of a problem and doesnt give the optimal solution. It just plays random positions, rather then intelligent.
I ...
2
votes
1answer
54 views
alpha beta search iterative deepening refutation table
I've implemented an alpha beta search with iterative deepening and i've read several techniques to further optimize the algorithm by searching for the best move first that came up from previous depth ...
0
votes
2answers
140 views
MiniMax Implementation
I am trying to write a small AI algorithm in Java implementing the miniMax algorithm.
The game upon which this is based is a two-player game where both players make one move per turn, and each board ...
0
votes
0answers
244 views
Java MiniMax TicTacToe AI vs AI won't play defensively
I've been trying to learn MiniMax through using TicTacToe as it seems like that is one of the most used examples out there. I'm starting off without pruning to try and get the hang of it. I have 2 AIs ...
1
vote
1answer
141 views
Minimax and tic tac toe - is my algorithm correct?
I implemented a minimax algorithm for TTT. When I make the AI player make the first move, it evaluates all minimax values of the possible moves as 0. That means it can choose any square on the grid as ...
0
votes
0answers
109 views
Connect four using minimax doesn't place AI piece in right position
I'm currently writing an algorithm as part of a project that mimics a Player-Vs-AI Connect Four game. Currently I have heuristics for the AI to decide on the next position to play on given a depth of ...
-1
votes
2answers
134 views
MinMax AI for Checkers
I have created simple Checkers game in Java with minmax AI, but I doesn't work. I use recursive version of minmax, but there must be something wrong with it, because it returns moves, that aren't ...
0
votes
2answers
81 views
Beating a minimax opponent
I have to create an AI which has to compete against other AIs.
Both AIs will run on the same hardware, have the same amount of processing time and memory. I know the opponent AI will be using the ...
1
vote
1answer
100 views
Iterative deepening search selected bad moves
I'm writing a Nine Men's Morris game and so far I have a Negascout search that works just fine. However, I would like to added iterative deepening, so I came up with this code:
public Move ...
2
votes
0answers
1k views
Java Minimax Alpha-Beta Pruning Recursion Return
I am trying to implement minimax with alpha-beta pruning for a checkers game in Java. My minimax algorithm works perfectly. My code runs with the alpha-beta code in place. Unfortunately, when I play ...
0
votes
2answers
206 views
Track best move from Minimax
I know this kind of question has been asked before, but i was unable to solve my doubts.
I have a simple Othello Engine (it plays very well actually), that uses the class below to get the best move:
...
2
votes
1answer
201 views
Bug with Minimax Solution for Tic Tac Toe in Coffeescript
(note: this is not CS homework)
I've tried implementing the minimax game-tree searching algorithm in Coffeescript, and continue to get errors with my algorithm. There appear to be 2 main issues: 1) ...
0
votes
1answer
112 views
Extending minimax algorithm for multiple opponents
The minimax algorithm is well described for two players for games like tic-tac-toe. I need to write an AI for a Tank game.
In this game the tanks have to move in a maze that have obstacles in the ...
0
votes
2answers
155 views
Concurrently search a game tree using minimax and AB pruning. Is that possible?
I'm going be competing in a board game AI competition at my school and am trying to come up with some ideas for concurrency to gain an edge. I will most likely be at a disadvantage because I will be ...
-2
votes
1answer
68 views
Decision making for a top down tank game [closed]
I'm writing an AI to control a tank. It has to act as a client in a game server. I have completed the communication part. For my AI I'm trying to implement minimax algorithm.
As variables there are ...
1
vote
2answers
112 views
Minimax algorithms with multiprocessing issues
I have what I think can be only a synchronizing problem in this Python code.
The code is intended to apply a minimax algorithm to a Tic Tac Toe game, implemented with parallel processes instead of a ...
2
votes
1answer
82 views
Bug in Quiescence Search
I have been steadily working on a chess program and have a minimax search, iterative deepening and transposition tables soon to come. At the moment, however, I have a bug which I have isolated to be ...
0
votes
1answer
675 views
Minimax / Alpha Beta for Android Reversi Game
I have to implement a Reversi game for Android. I have managed to implement all the game, is functional, but the problem is that I don't have an AI. In fact, at every move the computer moves in the ...
0
votes
1answer
179 views
Issue with MiniMax to Alpha-Beta Search Conversion
OK, my issue should sound pretty familiar to anyone who has played with board game programming, so here it is :
I've implemented a variation of the MiniMax algorithm (returning moves instead of ...
2
votes
1answer
54 views
JavaScript FileSystem API as Chess Alpha Beta data storage
I'm starting to write a Chess program in JavaScript and possibly some Node.JS if I find the need to involve the server in the Chess AI logic, which is still plausible at least in my possibly ignorant ...
0
votes
1answer
131 views
minimax code returns always 0 [closed]
I wrote an Alpha-Beta pruning from Wikipedia. I am trying to write a connect-four AI. The function should return column number, then my main function makes a move.
0
votes
0answers
95 views
Should I use different utility functions for different players in a game thats using MiniMax algorithm with Alpha-Beta pruning?
I am implementing Minimax with Alpha-Beta pruning algorithm to simulate a game. I used the same utility function for both the players, which, I believe, means that both players are playing with the ...
1
vote
1answer
156 views
MinMax Simple Demonstration for TicTacToe
I have been pulling out my hair trying to figure out how the MinMax algorithm, and hopefully the alpha-beta pruning algorithms work. I'm confused as to the recursion that occurs.
Firstly, does each ...
-1
votes
1answer
245 views
Write connect four in java [closed]
I want to write ai connect four program in java. I want use alpha-beta pruning. There was two methods, negamax and minimax. Which one is better? I think i need an evalution function. What should it ...
0
votes
1answer
255 views
Design of Evaluation function for Alpha beta pruning [closed]
I am designing a game of chess and the AI behind it implementing a search tree with alpha-beta pruning. I have a difficulty in designing the evaluation function for the game.
How does one go about ...
0
votes
1answer
122 views
Alpha-beta pruning consecutive moves for same player
I have implemented alpha-beta pruning for Checkers and thought I had it working, but found out that the computer does not take multiple jumps in a row (when it has to). For example:
AI does:
O _ _ _ ...
0
votes
1answer
73 views
Understanding constraints of Negamax
The snippet of code is constructed for calculating the bestMove of a position in a tictactoe game . I got almost every part of the code , except the condition in the for loop , which says that ...
5
votes
4answers
1k views
Return bestMove in minimax algorithm for tictactoe
I have tried to code the minimax algorithm for tic-tac-toe given in Russel Norvig's book on Artificial Intelligence. It had everything except that the way to return the bestMove to the user. I am ...
0
votes
2answers
160 views
Java : What value are alpha/beta to begin with in Minimax algorithm?
I understand the algorithm, as it applies to Alpha-Beta pruning. What I don't understand is since there is no way to represent ∞ in Java, on my first call to the Minimax method, what value ...
1
vote
1answer
234 views
Minimax Evaluation Function
I'm developing the mini-game Triple Triad seen in the game Final Fantasy VIII using Unity3D.
The basic game is a 3x3 grid, where the player and NPC hold 5 cards in their hand. The objective is to ...
2
votes
0answers
1k views
Java Minimax TicTacToe [closed]
I am currently trying to implement a Minimax algorithm for Tic Tac Toe. With the current version, there are some cases, where the computer screws up, and I am not quite sure why.
For example if I (as ...
3
votes
4answers
150 views
Creating a non-perfect game algorithm
I know how algorithms like minimax can be used in order to play perfect games (In this case, I'm looking a game similar to Tic-Tac-Toe)
However, I'm wondering how one would go about creating a ...
4
votes
1answer
297 views
Implementing a Minimax Algorithm in Clojure - conditional function with multiple recursive calls
This question and another question of mine sort of merged into one after I figured a few things out, so I revised this question.
What I'm trying to accomplish with my function is outlined below.
...
4
votes
2answers
369 views
Twist on tic tac toe
i'm writing a tictactoe program but its not your traditional tictactoe
First of all the board is 4x4 and the way to win is to get 3 of a kind and 1 of your opponents in a row, column, or diagonal. So ...
0
votes
2answers
176 views
Can “Monte-Carlo Tree Search” be applied on a “two player game with imperfect information” like Stratego?
I want to develop a two player game with imperfect information - "Stratego".
The game is "somewhat" like chess but initially we don't know anything about the ranks of the opponent's pieces. When a ...
2
votes
1answer
294 views
Using minimax search for card games with imperfect information
I want to use minimax search (with alpha-beta pruning), or rather negamax search, to make a computer program play a card game.
The card game actually consists of 4 players. So in order to be able to ...
1
vote
3answers
319 views
Negamax implementation doesn't appear to work with tic-tac-toe
I've implemented Negamax as it can be found on wikipedia, which includes alpha/beta pruning.
However, it seems to favor a losing move, which is an invalid result to my knowledge.
The game is ...
1
vote
1answer
1k views
Java - minimax algorithm issue
I'm working on a tictactoe board for practice making classes and i have ran into a problem with my algorithm. it seems to be returning the best move offensive, but it doesn't play defense. i dont know ...
0
votes
4answers
3k views
Implementing minimax algorithm for tic-tac-toe
I am trying to implement the minimax algorithm for a tic-tac-toe game where both the players are human and each time computer suggests an optimal move using the minimax algorithm. But it is not giving ...
2
votes
3answers
632 views
How exactly does minimax recursion work?
So I was looking up Mini-max for a Tic-Tac-Toe Game, but couldn't understand how the recursion worked? Okay, so basically here are my questions:
How does minimax know whose turn is it? Whats the ...
1
vote
2answers
234 views
What exactly is a board in the minimax function and how is it implemented?
So I was recently looking at the minimax function which is used in zero sum games. I understood it perfectly, other then how the board is implemented for the actual function:
For example this sample ...
1
vote
1answer
248 views
Perft test results - Can't find Bug?
I apologize right now for my bad english, I'm italian.
I'm writing a full implementation of a chess game in C#, Player vs Player and Player vs Computer, and now I'm having some difficult implementing ...
5
votes
1answer
2k views
Bug in Minimax Algorithm for Tic Tac Toe
I am currently trying to teach myself the Minimax algorithm and I have tried to implement it in java in tic tac toe. There is a bug in my algorithm however and I can't figure out what's causing it.
...
0
votes
1answer
197 views
Minimax search: how to print the path from the chosen next move to the leaf
Confusing title. I'll try to elaborate: I have an AI chess game that uses minimax search to generate the computer's next move. After going down the minimax tree to a chosen depth (say 5), it finally ...
1
vote
1answer
60 views
Addressing “procrastination” in minimax
I'm implementing minimax for a small game and am noticing something that I'm calling "procrastination". Boiled down to a very simple example:
In a capture-the-flag game, the flag is one square UP ...



