This is an old revision of the document!
Table of Contents
Chess - Programming - Links
Alpha Beta Pruning
BitBoards
https://www.chessprogramming.org/Checks_and_Pinned_Pieces_(Bitboards)
https://stackoverflow.com/questions/30680559/how-to-find-magic-bitboards?rq=1
https://stackoverflow.com/questions/6464110/getting-occupancy-bit-masks-for-bitboards?rq=1
https://stackoverflow.com/questions/8543455/chess-sliding-pieces-bitboards?rq=1
https://www.sciencedirect.com/science/article/pii/S0012365X15002873
https://www.sciencedirect.com/science/article/pii/S0012365X15002873#br000075
https://www.sciencedirect.com/science/article/pii/S0012365X15002873?via%3Dihub
Book Moves
Chessbase
https://www.chessprogramming.org/CTG
http://www.talkchess.com/forum3/viewtopic.php?t=29468&highlight=ctg+book+specification
https://www.chessprogramming.org/ChessBase_(Database)
C++
https://ofstack.com/category/C++/
https://www.reddit.com/r/C_Programming/comments/416li3/24_bit_unsigned_int/
http://ostack.cn/qa/?qa=935158/
C++ - ifstream
C++ - Iterator
C++ - Map and Multimap
http://www.java2s.com/Tutorial/Cpp/0460__map-multimap/Updateakeyvalue.htm
https://stackoverflow.com/questions/11343822/how-to-replace-key-value-in-a-std-multimap/11352166
https://riptutorial.com/cplusplus/example/2241/iterating-over-std--map-or-std--multimap
https://stackoverflow.com/questions/18560593/get-the-content-of-returned-multimap-iterator
https://stackoverflow.com/questions/4527686/how-to-update-stdmap-after-using-the-find-method
C++ - Operators
C++ - Random Numbers
https://www.softwaretestinghelp.com/random-number-generator-cpp/
https://stackoverflow.com/questions/9878965/rand-between-0-and-1
C++ - Std Forward
C++ - Threads
https://github.com/bshoshany/thread-pool
https://github.com/Fdhvdu/ThreadPool/tree/master/comparison
https://github.com/bilash/threadpool/blob/master/ThreadPool.cpp
https://github.com/bilash/threadpool
https://webdevdesigner.com/q/thread-pooling-in-c-11-76929/
https://codereview.stackexchange.com/questions/221617/thread-pool-c-implementation
https://wiki.sharewiz.net/doku.php?id=c:c_threads:mutex
https://mfreiholz.de/posts/make-a-class-thread-safe-cpp/
https://www.justsoftwaresolutions.co.uk/threading/multithreading-in-c++0x-part-3.html
https://newbedev.com/c-2011-std-thread-simple-example-to-parallelize-a-loop
https://accu.org/journals/overload/17/93/williams_1584/
https://stackoverflow.com/questions/10998780/stdthread-calling-method-of-class
https://stackoverflow.com/questions/11004273/what-is-stdpromise?noredirect=1&lq=1
https://stackoverflow.com/questions/10998780/stdthread-calling-method-of-class/10998831#10998831
https://stackoverflow.com/questions/20516773/stdunique-lockstdmutex-or-stdlock-guardstdmutex?rq=1
https://stackoverflow.com/questions/13667810/massive-cpu-load-using-stdlock-c11
http://howardhinnant.github.io/dining_philosophers.html
http://howardhinnant.github.io/dining_philosophers.html#Polite
http://howardhinnant.github.io/dining_philosophers.html#codeA
https://stackoverflow.com/questions/11004273/what-is-stdpromise?noredirect=1&lq=1
https://en.cppreference.com/w/cpp/thread/promise
http://www.cplusplus.com/reference/future/future/get/
http://www.gerald-fahrnholz.eu/sw/online_doc_multithreading/html/group___grp_intro.html
de Bruijn sequence
https://www.sciencedirect.com/science/article/pii/S0012365X15002873
https://www.sciencedirect.com/science/article/pii/S0012365X15002873#br000075
https://www.sciencedirect.com/science/article/pii/S0012365X15002873?via%3Dihub
End Games
Engine
http://computer-chess.org/doku.php?id=computer_chess:wiki:lists:chess_engine_list&
https://towardsdatascience.com/implementing-a-chess-engine-from-scratch-be38cbdae91
https://en.chessbase.com/post/the-future-is-here-alphazero-learns-chess
https://codereview.stackexchange.com/questions/175946/chess-engine-in-c?rq=1
https://www.lkessler.com/brutefor.shtml#bf6
https://chess24.com/en/read/news/how-do-chess-engines-think
https://github.com/hennimohammed/parallel_chess_engine
https://www.chessprogramming.org/Stockfish_NNUE
https://github.com/AaronBecker/daydreamer
https://www.chessprogramming.org/Brutus_NL
http://www.open-aurec.com/wbforum/viewtopic.php?f=2&t=50747
http://scleinzell.schachvereine.de/p_cbtipps/cb8_f6_02.shtml
http://scleinzell.schachvereine.de/home/sitemap.shtml
http://scidb.sourceforge.net/download.html
https://sourceforge.net/projects/scidb/
https://www.chessprogramming.org/Engines
https://github.com/AaronBecker/daydreamer
http://www.rybkachess.com/index.php?auswahl=Downloads
http://ulysse.io/ComputerChess.pdf
https://www.chessprogramming.org/Godot
https://github.com/ucarion/godot/blob/master/src/godot/Board.java
Evaluation
https://hxim.github.io/Stockfish-Evaluation-Guide/
https://www.chess.com/article/view/how-to-calculate-chess
https://www.chess.com/forum/view/general/how-does-the-analysis-engine-score-a-position
https://stackoverflow.com/questions/297577/is-there-a-perfect-algorithm-for-chess
https://catwolf.org/qs?id=457914e1-8f6e-45ad-9ff6-b3baab564dca&x=x
https://www.chess.com/article/view/10-positions-chess-engines-just-dont-understand
Games
https://www.ficsgames.org/cgi-bin/download.cgi
http://kirill-kryukov.com/chess/kcec/games.html
http://kirill-kryukov.com/chess/tablebases-online/
http://www.rybkachess.com/index.php?auswahl=Downloads
Logging
Minmax
Moves
https://codereview.stackexchange.com/questions/53875/generating-possible-chess-moves?rq=1
https://codereview.stackexchange.com/questions/213606/chess-move-validator?rq=1
http://www.problemschach.de/KMOVEComposer.pdf
https://www.chessprogramming.org/Move_Generation
https://stackoverflow.com/questions/43351532/sliding-piece-generation-in-chess-engine?rq=1
Openings
https://en.m.wikipedia.org/wiki/Encyclopaedia_of_Chess_Openings
https://en.m.wikipedia.org/wiki/List_of_chess_openings
https://rebel13.nl/download/books.html
https://chess.stackexchange.com/questions/2389/where-can-one-get-a-large-bin-opening-book
https://chess.stackexchange.com/questions/2431/how-to-test-the-quality-of-an-opening-book?rq=1
https://www.365chess.com/opening.php
https://www.365chess.com/opening.php?m=2&n=3&ms=e4&ns=3
https://chess.stackexchange.com/questions/2389/where-can-one-get-a-large-bin-opening-book?rq=1
https://chess.stackexchange.com/questions/8004/opening-book-for-stockfish?rq=1
https://github.com/michaeldv/donna_opening_books
https://www.chess.com/forum/view/general/free-online-ctg-opening-book
https://github.com/niklasf/python-chess/issues/46
https://github.com/sshivaji/ctgreader/blob/master/book_ctg.c
https://github.com/sshivaji/ctgreader
http://www.talkchess.com/forum3/viewtopic.php?t=29468&highlight=ctg+book+specification
https://github.com/makemefriendanshu/daydreamer/blob/release/book_ctg.c
https://github.com/AaronBecker/daydreamer/blob/release/v1/book_ctg.cc
Perft
PGN
Polyglot
http://rebel13.nl/download/books.html
https://catwolf.org/qs?id=d9d66184-e61f-4889-8573-fcc15dcec76b&x=x
https://www.chess2u.com/t12460-polyglot-tolerant-a-new-tool-to-create-bin-books
https://github.com/dsjoerg/polyglot_elo/blob/master/src/piece.cpp
https://github.com/ulthiel/polyglot
http://hgm.nubati.net/book_format.html
https://chess.stackexchange.com/questions/28874/how-to-use-polyglot-opening-book-bin-file?rq=1
http://hgm.nubati.net/book_format.html
https://www.chessprogramming.org/PolyGlot
https://chess.stackexchange.com/questions/35448/looking-for-polyglot-opening-books
http://rebel13.nl/download/polyglot.html#weight
http://hgm.nubati.net/book_format.html
Pruning
Ratings
https://www.chess.com/forum/view/tournaments/english-grade-conversion
https://www.hiarcs.net/forums/viewtopic.php?t=3389
https://second.wiki/wiki/bt2450
http://kirill-kryukov.com/chess/kcec/rating_list_all.html
https://en.wikipedia.org/wiki/Elo_rating_system
SCID
Searching
Tablebases
Tests
https://es.wikipedia.org/wiki/Bratko-Kopec-Test
https://www.chessprogramming.org/Bratko-Kopec_Test
https://groups.google.com/g/rec.games.chess.misc/c/OeK0k5KDaf4
https://second.wiki/wiki/bt2450
https://www.schach-computer.info/wiki/index.php/BT-2630
http://utzingerk.com/test_kaufman