Global Information Lookup Global Information

Negamax information


Negamax search is a variant form of minimax search that relies on the zero-sum property of a two-player game.

This algorithm relies on the fact that to simplify the implementation of the minimax algorithm. More precisely, the value of a position to player A in such a game is the negation of the value to player B. Thus, the player on move looks for a move that maximizes the negation of the value resulting from the move: this successor position must by definition have been valued by the opponent. The reasoning of the previous sentence works regardless of whether A or B is on move. This means that a single procedure can be used to value both positions. This is a coding simplification over minimax, which requires that A selects the move with the maximum-valued successor while B selects the move with the minimum-valued successor.

It should not be confused with negascout, an algorithm to compute the minimax or negamax value quickly by clever use of alpha–beta pruning discovered in the 1980s. Note that alpha–beta pruning is itself a way to compute the minimax or negamax value of a position quickly by avoiding the search of certain uninteresting positions.

Most adversarial search engines are coded using some form of negamax search.

and 10 Related for: Negamax information

Request time (Page generated in 0.5441 seconds.)

Negamax

Last Update:

Negamax search is a variant form of minimax search that relies on the zero-sum property of a two-player game. This algorithm relies on the fact that min...

Word Count : 1782

Minimax

Last Update:

\ \max(a,b)=-\min(-a,-b)\ ,} minimax may often be simplified into the negamax algorithm. Suppose the game being played only has a maximum of two possible...

Word Count : 3807

Connect Four

Last Update:

intelligence algorithms able to strongly solve Connect Four are minimax or negamax, with optimizations that include alpha-beta pruning, move ordering, and...

Word Count : 2199

PVS

Last Update:

visible set, a form of occlusion culling Principal variation search, a negamax algorithm Prototype Verification System, a specification language PVS-Studio...

Word Count : 183

Monty Hall problem

Last Update:

Aumann's agreement theorem Folk theorem Minimax theorem Nash's theorem Negamax theorem Purification theorem Revelation principle Sprague–Grundy theorem...

Word Count : 9895

Expectiminimax

Last Update:

Probability (2005) by Tom Everitt and Marcus Hutter. Minimax Alpha–beta pruning Negamax Expected value Russell, Stuart J.; Norvig, Peter (2009). Artificial Intelligence:...

Word Count : 514

Principal variation search

Last Update:

search (sometimes equated with the practically identical NegaScout) is a negamax algorithm that can be faster than alpha–beta pruning. Like alpha–beta pruning...

Word Count : 1046

Solving chess

Last Update:

Aumann's agreement theorem Folk theorem Minimax theorem Nash's theorem Negamax theorem Purification theorem Revelation principle Sprague–Grundy theorem...

Word Count : 1574

Determinacy

Last Update:

Aumann's agreement theorem Folk theorem Minimax theorem Nash's theorem Negamax theorem Purification theorem Revelation principle Sprague–Grundy theorem...

Word Count : 4059

Computer Othello

Last Update:

reached. A naive implementation of this approach, known as Minimax or Negamax, can only search to a small depth in a practical amount of time, so various...

Word Count : 2163

PDF Search Engine © AllGlobal.net