Difference between revisions of "MinimalChess"

From Chessprogramming wiki
Jump to: navigation, search
Line 14: Line 14:
 
* [[Iterative Deepening]]
 
* [[Iterative Deepening]]
 
* [[Alpha-Beta]]  
 
* [[Alpha-Beta]]  
 +
* [[Transposition Table]] (0.5)
 +
* [[Null Move Pruning]] ([[Depth Reduction R|R2]]) (0.5)
 
* [[Quiescence Search]]
 
* [[Quiescence Search]]
 
* [[Move Ordering]]
 
* [[Move Ordering]]
Line 21: Line 23:
 
==[[Evaluation]]==
 
==[[Evaluation]]==
 
* [[Piece-Square Tables]]
 
* [[Piece-Square Tables]]
 +
* [[Mobility]] (0.5)
  
 
=Forum Posts=
 
=Forum Posts=
Line 30: Line 33:
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=7&t=77089 PST-only Evaluation for MinimalChess 0.4] by [[Thomas Jahn]], [[CCC]], April 15, 2021 » [[Piece-Square Tables]]
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=7&t=77089 PST-only Evaluation for MinimalChess 0.4] by [[Thomas Jahn]], [[CCC]], April 15, 2021 » [[Piece-Square Tables]]
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=77186 MinimalChess 0.4 released] by [[Thomas Jahn]], [[CCC]], April 27, 2021
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=77186 MinimalChess 0.4 released] by [[Thomas Jahn]], [[CCC]], April 27, 2021
 +
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=77586 MinimalChess 0.5 released] by [[Thomas Jahn]], [[CCC]], June 30, 2021
  
 
=External Links=
 
=External Links=
 
==Chess Engine==
 
==Chess Engine==
 
* [https://github.com/lithander/MinimalChessEngine GitHub - lithander/MinimalChessEngine]
 
* [https://github.com/lithander/MinimalChessEngine GitHub - lithander/MinimalChessEngine]
 +
* [https://www.youtube.com/playlist?list=PL6vJSkTaZuBtTokp8-gnTsP39GCaRS3du Making of MinimalChessEngine], [https://en.wikipedia.org/wiki/YouTube YouTube] Video
 
==Misc==
 
==Misc==
 
* [https://en.wiktionary.org/wiki/minimal minimal - Wiktionary]
 
* [https://en.wiktionary.org/wiki/minimal minimal - Wiktionary]

Revision as of 19:57, 1 July 2021

Home * Engines * MinimalChess

ELEMENT LVIII-Animation [1]

MinimalChess,
an UCI compliant, didactic open source chess program by Thomas Jahn, written in C#, and first released as MinimalChess 0.2 in February 2021 [2]. The game playing entity consists of the library MinimalChess, and using that library, the UCI engine MinimalChessEngine and, if no external GUI is used, the Command Line Interface MinimalChessBoard.

Features

[3]

Board Representation

Search

Evaluation

Forum Posts

External Links

Chess Engine

Misc

References

Up one level