Top "Minimax" questions

A concept used in artificial intelligence/game theory for two-player games.

Minimax algorithm for Tic Tac Toe

I'm trying to implement minimax algorithm by Jason Fox (http://neverstopbuilding.com/minimax), but it isn't working, the computer is …

c# algorithm recursion minimax
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.…

algorithm artificial-intelligence evaluation minimax
Minimax algorithm for Tic Tac Toe Python

I kind of understand how the minimax algorithm works for Tic Tac Toe python but I have no idea how …

python algorithm minimax
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 …

algorithm graph path minimax floyd-warshall
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 minimax
Conversion of minimax with alpha beta pruning to negamax

I've written a minimax algorithm with alpha beta pruning for the game Checkers, and now I'm trying to rewrite it …

c++ algorithm minimax alpha-beta-pruning
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 …

java minimax gomoku
C++ minimax function

I have searched Google and Stackoverflow for this question, but I still don't understand how a minimax function works. I …

c++ algorithm minimax
Understanding the minmax pseudocode

I'm teaching myself the minimax algorithm and I just had a few questions I was hoping someone could answer. Firstly …

pseudocode minimax
simplest MiniMax algorithm for TicTacToe AI in Java

I was trying to get a grasp of MiniMax algorithm, and have read up on it. My initial approach was …

java algorithm artificial-intelligence minimax