Difference between revisions of "Fail-Soft"

From Chessprogramming wiki
Jump to: navigation, search
Line 52: Line 52:
 
* [http://www.talkchess.com/forum/viewtopic.php?t=51284 Fail soft vs fail hard] by [[Sergei Markoff|Sergei S. Markoff]], [[CCC]], February 15, 2014 » [[Fail-Hard]], [[Fail-Low]], [[Internal Iterative Deepening]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=51284 Fail soft vs fail hard] by [[Sergei Markoff|Sergei S. Markoff]], [[CCC]], February 15, 2014 » [[Fail-Hard]], [[Fail-Low]], [[Internal Iterative Deepening]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=54387 Implications of Lazy eval on Don Beal effect in Fail Soft] by [[Henk van den Belt]], [[CCC]], November 19, 2014 » [[Lazy Evaluation]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=54387 Implications of Lazy eval on Don Beal effect in Fail Soft] by [[Henk van den Belt]], [[CCC]], November 19, 2014 » [[Lazy Evaluation]]
==2015 ...==
 
 
* [http://www.talkchess.com/forum/viewtopic.php?t=60650 Multi-cut and fail-soft] by [[Matthew R. Brades]], [[CCC]], June 30, 2016 » [[Multi-Cut]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=60650 Multi-cut and fail-soft] by [[Matthew R. Brades]], [[CCC]], June 30, 2016 » [[Multi-Cut]]
 
* [http://www.open-chess.org/viewtopic.php?f=5&t=3180 Fail Soft best practices] by kickstone, [[Computer Chess Forums|OpenChess Forum]], July 30, 2018
 
* [http://www.open-chess.org/viewtopic.php?f=5&t=3180 Fail Soft best practices] by kickstone, [[Computer Chess Forums|OpenChess Forum]], July 30, 2018
 +
==2020 ...==
 +
* [https://www.talkchess.com/forum3/viewtopic.php?f=7&t=79223 Fail hard/soft] by Philippe Chevalier, [[CCC]], January 28, 2022
  
 
=External Links=
 
=External Links=
 +
* [https://en.wikipedia.org/wiki/Alpha%E2%80%93beta_pruning#Pseudocode Alpha–beta pruning from Wikipedia]
 +
* [https://www.ics.uci.edu/~eppstein/180a/990202b.html Lecture notes for February 2, 1999  Variants of Alpha-Beta Search] by [[David Eppstein]]
 
* [https://en.wiktionary.org/wiki/fail-soft fail-soft - Wiktionary]
 
* [https://en.wiktionary.org/wiki/fail-soft fail-soft - Wiktionary]
 
* [https://en.wikipedia.org/wiki/Fail_soft Fail soft from Wikipedia]
 
* [https://en.wikipedia.org/wiki/Fail_soft Fail soft from Wikipedia]
Line 68: Line 71:
 
=References=  
 
=References=  
 
<references />
 
<references />
 
 
'''[[Alpha-Beta|Up one Level]]'''
 
'''[[Alpha-Beta|Up one Level]]'''
 
[[Category:Soft Machine]]
 
[[Category:Soft Machine]]

Revision as of 00:11, 1 February 2022

Home * Search * Alpha-Beta * Fail-Soft

Window of Perception [1]

Fail-Soft is a term related to an Alpha-Beta like search. Returned scores might be outside the bounds:

History

In his 1983 paper Another optimization of alpha-beta search [2], John Philip Fishburn introduced Fail-Soft Alpha-Beta as an improvement of Fail-Hard without any extra work [3]. Fail-Soft has the reputation for searching less nodes than Fail-Hard, but might also require some care regarding to search instability issues in conjunction with transposition tables and various pruning-, reduction- and extension techniques.

Mate Scores

In Chrilly Donninger's initial null move pruning implementation there was a deep search extension [4], if the null move was refuted by a mate attack, thus relying on Fail-Soft of a null window search, where many "random" moves may refute the null-move with or without score in the mate range.

See also

Publications

Forum Posts

1995 ...

2000 ...

2005 ...

2010 ...

2020 ...

External Links

Lineup: Mike Ratledge, John Marshall, Karl Jenkins, Roy Babbington, Allan Holdsworth
Lineup: Ian Carr, Brian Smith, Karl Jenkins, John Marshall, Chris Spedding, Jeff Clyne

References

  1. Window of Perception (Jump Start Century 21 and move on) by Dominic01, May 19, 2013, Wikimedia Commons
  2. John Philip Fishburn (1983). Another optimization of alpha-beta search. SIGART Bulletin, Issue 84, pdf
  3. Jean-Christophe Weill (1991). Experiments With the NegaC* Search - An Alternative for Othello Endgame Search. Heuristic Programming in AI 2
  4. Chrilly Donninger (1993). Null Move and Deep Search: Selective-Search Heuristics for Obtuse Chess Programs. ICCA Journal, Vol. 16, No. 3

Up one Level