Both sides previous revisionPrevious revisionNext revision | Previous revision |
chess:programming:links [2022/06/01 10:51] – peter | chess:programming:links [2022/06/01 13:21] (current) – peter |
---|
====== Chess - Programming - Links ====== | ====== Chess - Programming - Links ====== |
| |
| |
| ===== AI ===== |
| |
| https://www.codeproject.com/Articles/1168892/Test-Driven-Chess-Artificial-Intelligence |
| |
| ---- |
| |
| |
| |
https://www.chessprogramming.org/Checks_and_Pinned_Pieces_(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 |
| |
| https://stackoverflow.com/questions/36185580/how-to-generate-bit-board-occupancy-mask-for-the-queens-move-in-chess?rq=1 |
| |
| https://stackoverflow.com/questions/36185580/how-to-generate-bit-board-occupancy-mask-for-the-queens-move-in-chess?rq=1 |
| |
| http://www.rivalchess.com/magic-bitboards/ |
| |
| https://stackoverflow.com/questions/16925204/sliding-move-generation-using-magic-bitboard?rq=1 |
| |
| https://www.madchess.net/2018/10/28/madchess-3-0-beta-build-39-bitboards/ |
| |
| https://www.stmintz.com/ccc/index.php?id=490287 |
| |
| https://www.chessprogramming.org/SBAMG |
| |
| http://www.open-aurec.com/wbforum/viewtopic.php?f=4&t=4781 |
| |
| https://www.madchess.net/2018/10/28/madchess-3-0-beta-build-39-bitboards/ |
| |
| http://www.rivalchess.com/magic-bitboards/ |
| |
| https://groups.google.com/g/comp.lang.asm.x86/c/3pVGzQGb1ys?pli=1 |
| |
| https://www.chessprogramming.org/Looking_for_Magics |
| |
| |
| |
| |
http://www.talkchess.com/forum3/viewtopic.php?f=7&t=29468&sid=d9787b01265e4e8a5cbd2cc8e971297f&start=10 | http://www.talkchess.com/forum3/viewtopic.php?f=7&t=29468&sid=d9787b01265e4e8a5cbd2cc8e971297f&start=10 |
| |
| https://github.com/niklasf/python-chess/issues/46 |
| |
| https://github.com/sshivaji/ctgreader |
| |
| https://www.chess.com/forum/view/general/free-online-ctg-opening-book |
| |
| |
| |
| |
| |
https://www.reddit.com/r/C_Programming/comments/416li3/24_bit_unsigned_int/ | https://www.reddit.com/r/C_Programming/comments/416li3/24_bit_unsigned_int/ |
| |
| http://ostack.cn/qa/?qa=935158/ |
| |
| https://stackoverflow.com/questions/29717345/chess-engine-is-it-ok-to-pass-board-object-reference-to-a-piece?rq=1 |
| |
| https://people.engr.tamu.edu/djimenez/ut/utsa/cs3343/lecture20.html |
| |
| https://stackoverflow.com/questions/10516196/append-an-int-to-a-stdstring |
| |
| https://tutorialspoint.dev/algorithm/dynamic-programming-algorithms |
| |
| https://tutorialspoint.dev/algorithm/geometric-algorithms |
| |
| https://en.cppreference.com/w/cpp/algorithm/find |
| |
| https://www.cs.technion.ac.il/users/yechiel/c++-faq/explicit-ctors.html |
| |
| https://www.techiedelight.com/page/29/ |
| |
| https://stackoverflow.com/questions/191757/how-to-concatenate-a-stdstring-and-an-int |
| |
| https://newbedev.com/error-use-of-deleted-function |
| |
| https://dzone.com/articles/all-about-lambda-functions-in-cfrom-c11-to-c17 |
| |
| https://www.tutorialspoint.com/print-all-sequences-of-given-length-in-cplusplus |
| |
| |
| ---- |
| |
| ===== C++ - Array ===== |
| |
| https://tutorialspoint.dev/data-structure/arrays/check-for-majority-element-in-a-sorted-array |
| |
| ---- |
| |
| ===== C++ - Bits ===== |
| |
| http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog |
| |
| https://archive.ph/jpUqo#selection-1803.200-1805.36 |
| |
| https://stackoverflow.com/questions/3465098/bit-twiddling-which-bit-is-set |
| |
| https://www.techiedelight.com/swap-adjacent-bits-number/ |
| |
| https://www.techiedelight.com/circular-shift-integer-k-positions/ |
| |
| https://newbedev.com/efficient-bitwise-operations-for-counting-bits-or-find-the-right-left-most-ones |
| |
| https://blog.stephencleary.com/2010/10/implementing-gccs-builtin-functions.html |
| |
| https://stackoverflow.com/questions/21623614/finding-the-first-set-bit-in-a-binary-number?noredirect=1&lq=1 |
| |
| https://hackmd.io/@nickchenchj/sysprog2020_quiz3 |
| |
| https://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html |
| |
| https://www.felixcloutier.com/x86/blsi |
| |
| https://www.chessprogramming.org/BMI1 |
| |
| https://stackoverflow.com/questions/757059/position-of-least-significant-bit-that-is-set |
| |
| https://www.chessprogramming.org/BitScan |
| |
| https://newbedev.com/bit-twiddling-which-bit-is-set |
| |
| https://graphics.stanford.edu/~seander/bithacks.html |
| |
| https://graphics.stanford.edu/~seander/bithacks.html#ZerosOnRightMultLookup |
| |
| https://siokoshou-hatenadiary-org.translate.goog/entries/2009/07/04?_x_tr_sl=ja&_x_tr_tl=en&_x_tr_hl=en-GB&_x_tr_pto=nui,sc |
| |
| https://wandbox-org.translate.goog/permlink/DKLoL1qKgiwTrugE?_x_tr_sl=ja&_x_tr_tl=en&_x_tr_hl=en-GB&_x_tr_pto=nui,sc |
| |
| http://graphics.stanford.edu/~seander/bithacks.html#IntegerLogIEEE64Float |
| |
| |
| |
| |
| ---- |
| |
| ===== C++ - Combinations ===== |
| |
| https://catwolf.org/qs?id=6bb86fe8-eb1a-4383-aa01-1319ad7dac09&x=y |
| |
| https://gist.github.com/rg3/731626 |
| |
| https://www.codegrepper.com/code-examples/whatever/print+all+combinations+of+a+string+c%2B%2B |
| |
| https://www.codeguru.com/cplusplus/combinations-in-c/ |
| |
| https://www.sanfoundry.com/cpp-program-possible-combinations-list-numbers/ |
| |
| https://cplusplus.happycodings.com/sorting-searching/generate-all-possible-combinations-of-a-given-list-of-numbers.html |
| |
| https://www.tutorialspoint.com/cplusplus-program-to-generate-all-possible-combinations-out-of-a-b-c-d-e |
| |
| https://stackoverflow.com/questions/12991758/creating-all-possible-k-combinations-of-n-items-in-c/28698654 |
| |
| https://central.bac-lac.gc.ca/.item?id=TC-OGU-8812&op=pdf&app=Library&oclc_number=1033001812 |
| |
| https://scholar.google.com/scholar_lookup?title=Novel%20universal%20cycle%20constructions%20for%20a%20variety%20of%20combinatorial%20objects&publication_year=2015&author=D.%20Wong |
| |
| https://tutorialspoint.dev/algorithm/algorithms/check-two-given-sets-disjoint |
| |
| https://tutorialspoint.dev/algorithm/backtracking-algorithms/backtracking-approach-generate-n-bit-gray-codes |
| |
| https://tutorialspoint.dev/algorithm/bitwise-algorithms/next-higher-number-with-same-number-of-set-bits |
| |
| https://tutorialspoint.dev/algorithm/divide-and-conquer |
| |
| https://www.techiedelight.com/find-distinct-combinations-of-given-length/ |
| |
| https://www.techiedelight.com/find-distinct-combinations-given-length-2/ |
| |
| |
| |
| ---- |
| |
| ===== C++ - Hash ===== |
| |
| https://github.com/COMBINE-lab/cuttlefish/blob/master/src/xxHash/xxhsum.c |
| |
| |
| |
https://stackoverflow.com/questions/22192254/reading-binary-data-into-struct-with-ifstream | https://stackoverflow.com/questions/22192254/reading-binary-data-into-struct-with-ifstream |
| |
| |
| ---- |
| |
| ===== C++ - Iterator ===== |
| |
| https://stackoverflow.com/questions/8822576/function-returning-iterator-in-c |
| |
| |
---- | ---- |
| |
http://www.java2s.com/Tutorial/Cpp/0460__map-multimap/Updateakeyvalue.htm | 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://stackoverflow.com/questions/2568194/populate-a-vector-with-all-multimap-values-with-a-given-key |
| |
| 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++ - Math ===== |
| |
| https://www.programiz.com/cpp-programming/library-function/cmath/log |
| |
| ---- |
| |
| ===== C++ - Matrix ===== |
| |
| https://tutorialspoint.dev/algorithm/dynamic-programming-algorithms/largest-rectangular-sub-matrix-whose-sum-0 |
| |
| https://tutorialspoint.dev/algorithm/dynamic-programming-algorithms/dynamic-programming-set-27-max-sum-rectangle-in-a-2d-matrix |
| |
| https://tutorialspoint.dev/algorithm/dynamic-programming-algorithms/collect-maximum-points-in-a-grid-using-two-traversals |
| |
| https://tutorialspoint.dev/algorithm/dynamic-programming-algorithms/largest-area-rectangular-sub-matrix-equal-number-1s-0s |
| |
| https://www.techiedelight.com/Category/Matrix/ |
| |
| https://www.techiedelight.com/inplace-rotate-matrix-180-degrees/ |
| |
| https://www.techiedelight.com/print-all-shortest-routes-rectangular-grid/ |
| |
| https://www.techiedelight.com/find-index-row-containing-maximum-number-1s-matrix/ |
| |
| https://www.techiedelight.com/largest-square-sub-matrix-surrounded-by-1s/ |
| |
| https://www.techiedelight.com/find-largest-rectangle-of-1s-binary-matrix/ |
| |
| https://www.techiedelight.com/construct-complete-binary-tree-from-linked-list/ |
| |
| |
| |
| |
| |
| ---- |
| |
| ===== C++ - Operators ===== |
| |
https://en.cppreference.com/w/cpp/language/operators | https://en.cppreference.com/w/cpp/language/operators |
| |
| https://stackoverflow.com/questions/7825055/what-does-the-operator-do-in-c?rq=1 |
| |
| |
---- | ---- |
| |
https://stackoverflow.com/questions/9878965/rand-between-0-and-1 | https://stackoverflow.com/questions/9878965/rand-between-0-and-1 |
| |
| https://www.pcg-random.org/index.html |
| |
| https://www.pcg-random.org/download.html |
| |
| https://codeforces.com/blog/entry/61587 |
| |
| https://medium.com/@sddkal/c-reimplementing-default-congruential-random-generator-6000936f38a3 |
| |
| |
| |
| |
| ---- |
| |
| ===== C++ - Search ===== |
| |
| https://stackoverflow.com/questions/15517991/search-a-vector-of-objects-by-object-attribute |
| |
| https://www.delftstack.com/howto/cpp/cpp-binary-search-tree-in-cpp/ |
| |
| |
| |
http://www.cplusplus.com/reference/future/future/get/ | http://www.cplusplus.com/reference/future/future/get/ |
| |
| http://www.gerald-fahrnholz.eu/sw/online_doc_multithreading/html/group___grp_intro.html |
| |
| https://stackoverflow.com/questions/20516773/stdunique-lockstdmutex-or-stdlock-guardstdmutex/20516924 |
| |
| |
| ---- |
| |
| ===== C++ - Vector ===== |
| |
| https://stackoverflow.com/questions/15517991/search-a-vector-of-objects-by-object-attribute |
| |
| |
| ---- |
| |
| ===== de Bruijn sequence ===== |
| |
| |
| [Good] |
| https://datagenetics.com/blog/october22013/index.html |
| |
| [Good] |
| https://www.chessprogramming.org/De_Bruijn_Sequence |
| |
| https://www.chessprogramming.org/De_Bruijn_Sequence_Generator |
| |
| https://www.stmintz.com/ccc/index.php?id=339184 |
| |
| |
| 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 |
| |
| https://oeis.org/A000011/a000011.pdf |
| |
| https://arxiv.org/pdf/1803.09009.pdf |
| |
| https://newbedev.com/how-to-compute-de-bruijn-sequences-for-non-power-of-two-sized-alphabets |
| |
| https://people.engr.tamu.edu/djimenez/ut/utsa/cs3343/lecture19.html |
| |
| https://people.engr.tamu.edu/djimenez/ut/utsa/cs3343/lecture14.html |
| |
| https://codeforces.com/problemset/problem/1367/E |
| |
| https://stackoverflow.com/questions/31230146/number-of-distinct-necklaces-using-k-colors |
| |
| https://www.sciencedirect.com/science/article/pii/S0012365X15002873#t000005 |
| |
| https://central.bac-lac.gc.ca/.item?id=TC-OGU-8812&op=pdf&app=Library&oclc_number=1033001812 |
| |
| https://scholar.google.com/scholar_lookup?title=Novel%20universal%20cycle%20constructions%20for%20a%20variety%20of%20combinatorial%20objects&publication_year=2015&author=D.%20Wong |
| |
| https://scholar.google.com/citations?user=uvBahbkAAAAJ&hl=en&oi=sra |
| |
| https://stackoverflow.com/questions/21888140/de-bruijn-algorithm-binary-digit-count-64bits-c-sharp/21888542#21888542 |
| |
| http://citeseerx.ist.psu.edu/viewdoc/download;jsessionid=B0442877158451AFACAFE645DA0B5CC3?doi=10.1.1.37.8562&rep=rep1&type=pdf |
| |
| https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.60.7180&rep=rep1&type=pdf |
| |
| http://supertech.csail.mit.edu/papers/debruijn.pdf |
| |
| https://www.chessprogramming.org/De_Bruijn_Sequence_Generator |
| |
| https://en.wikipedia.org/wiki/De_Bruijn_sequence |
| |
| https://ostack.cn/qa/?qa=899440/ |
| |
| https://rosettacode.org/wiki/De_Bruijn_sequences#C.2B.2B |
| |
| https://en.wikipedia.org/wiki/De_Bruijn_sequence |
| |
| https://www.tutorialspoint.com/print-all-sequences-of-given-length-in-cplusplus |
| |
| https://stackoverflow.com/questions/4008603/how-to-compute-de-bruijn-sequences-for-non-power-of-two-sized-alphabets |
| |
| https://newbedev.com/how-to-compute-de-bruijn-sequences-for-non-power-of-two-sized-alphabets |
| |
| https://leetcode.com/problems/cracking-the-safe/discuss/110260/de-bruijn-sequence-c |
| |
| https://rosettacode.org/wiki/De_Bruijn_sequences |
| |
| https://www.sciencedirect.com/science/article/pii/S0012365X15002873 |
| |
| https://www.sciencedirect.com/science/article/pii/S0012365X15002873#br000075 |
| |
| https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.1038.9096&rep=rep1&type=pdf |
| |
| http://supertech.csail.mit.edu/papers/debruijn.pdf |
| |
| https://docplayer.net/167480236-Using-de-bruijn-sequences-to-index-a-1-in-a-computer-word-charles-e-leiserson-harald-prokop-keith-h-randall-mit-laboratory-for-computer-science-cam.html |
| |
| https://www.chessprogramming.org/De_Bruijn_Sequence_Generator |
| |
| https://www.chessprogramming.org/De_Bruijn_Sequence |
| |
| https://stackoverflow.com/questions/21888140/de-bruijn-algorithm-binary-digit-count-64bits-c-sharp |
| |
| https://stackoverflow.com/questions/21888140/de-bruijn-algorithm-binary-digit-count-64bits-c-sharp/21888542#21888542 |
| |
| |
| |
| |
===== Engine ===== | ===== Engine ===== |
| |
| https://www.chessprogramming.org/Main_Page |
| |
http://computer-chess.org/doku.php?id=computer_chess:wiki:lists:chess_engine_list& | http://computer-chess.org/doku.php?id=computer_chess:wiki:lists:chess_engine_list& |
| |
http://www.rybkachess.com/index.php?auswahl=Downloads | 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 |
| |
| https://web.archive.org/web/20190203055228/http://craftychess.com/ |
| |
| https://www.madchess.net/category/code/ |
| |
| https://www.madchess.net/ |
| |
| https://www.codeproject.com/Articles/1168892/Test-Driven-Chess-Artificial-Intelligence |
| |
| https://github.com/Gigantua/Gigantua/pull/1 |
| |
| https://github.com/Gigantua/Gigantua/blob/main/Gigantua/Gigantua.cpp |
| |
| https://www.madchess.net/guides/technical-specifications/ |
| |
| https://www.chessprogramming.org/Syed_Fahad |
| |
| http://www.talkchess.com/forum3/viewtopic.php?t=52709 |
| |
| http://computer-chess.org/forum/index.php?id=3153 |
| |
| http://computer-chess.org/doku.php?id=computer_chess:wiki:lists:chess_news_list |
| |
| https://zipproth.de/Brainfish/download/ |
| |
| |
| |
| |
| |
https://www.chess.com/article/view/10-positions-chess-engines-just-dont-understand | https://www.chess.com/article/view/10-positions-chess-engines-just-dont-understand |
| |
| https://www.washingtonpost.com/wp-apps/imrs.php?src=https://arc-anglerfish-washpost-prod-washpost.s3.amazonaws.com/public/NA2JTFTL4Y7N3JRFUCZO4VSI4A.png&w=916 |
| |
| https://www.madchess.net/2021/09/13/madchess-3-1-beta-2b475bc-color-agnostic-code/ |
| |
| https://www.madchess.net/2021/10/24/madchess-3-1-beta-26e5323-threats/ |
| |
| https://www.madchess.net/2021/09/13/madchess-3-1-beta-2b475bc-color-agnostic-code/ |
| |
| https://chesstempo.com/chess-tactics/ |
| |
| |
| ---- |
| |
| ===== Fen ===== |
| |
| https://github.com/epeld/fen/blob/master/src/Square.hs |
| |
| https://www.reddit.com/r/chess/comments/69t7s3/is_there_an_open_fen_database/ |
| |
| https://www.chess.com/terms/fen-chess |
| |
| |
| |
| |
http://www.rybkachess.com/index.php?auswahl=Downloads | http://www.rybkachess.com/index.php?auswahl=Downloads |
| |
| [GOOD] |
| https://database.lichess.org/#standard_games |
| |
| |
| https://old.chesstempo.com/game-database.html |
| |
| |
| ---- |
| |
| ===== Huffman ===== |
| |
| https://www.studytonight.com/data-structures/huffman-coding |
| |
| https://coderedirect.com/questions/85781/efficient-way-of-storing-huffman-tree |
| |
| https://math.hws.edu/eck/cs225/s03/binary_trees/ |
| |
| https://www.delftstack.com/howto/cpp/cpp-binary-search-tree-in-cpp/ |
| |
| https://stackoverflow.com/questions/759707/efficient-way-of-storing-huffman-tree |
| |
| https://stackoverflow.com/questions/759707/efficient-way-of-storing-huffman-tree?noredirect=1&lq=1 |
| |
| https://github.com/cynricfu/huffman-coding/blob/master/huffman.cpp |
| |
| https://leetcode.com/problems/encode-and-decode-tinyurl/discuss/302761/c-using-huffman-coding |
| |
| http://www.stackprinter.com/export?service=stackoverflow&question=1831386&printer=false&linktohome=true |
| |
| https://stackoverflow.com/questions/65138869/decoding-a-huffman-tree-c |
| |
| https://cseweb.ucsd.edu//~kube/cls/100/Lectures/lec9/lec9.pdf |
| |
| https://www2.cs.duke.edu/csed/poop/huff/info/ |
| |
| https://www.programiz.com/dsa/b-tree |
| |
| https://cs.calvin.edu/activities/books/c++/ds/2e/WebItems/Chapter15/Huffman.pdf |
| |
| https://gist.github.com/pwxcoo/72d7d3c5c3698371c21e486722f9b34b |
| |
| |
| |
| ---- |
| |
| ===== Knights Tour ===== |
| |
| https://runestone.academy/ns/books/published/pythonds/Graphs/BuildingtheKnightsTourGraph.html |
| |
| |
| |
https://www.chessprogramming.org/Move_Generation | https://www.chessprogramming.org/Move_Generation |
| |
| https://stackoverflow.com/questions/43351532/sliding-piece-generation-in-chess-engine?rq=1 |
| |
| https://stackoverflow.com/questions/16925204/sliding-move-generation-using-magic-bitboard?rq=1 |
| |
| https://chess.stackexchange.com/questions/15705/c-vs-java-engine-move-generation-performance |
| |
| https://www.madchess.net/2018/10/28/madchess-3-0-beta-build-39-bitboards/ |
| |
| https://www.codeproject.com/Articles/5313417/Worlds-Fastest-Bitboard-Chess-Movegenerator |
| |
| https://www.codeproject.com/Articles/5313417/Worlds-Fastest-Bitboard-Chess-Movegenerator#_comments |
| |
| https://github.com/Gigantua/Gigantua/pull/1 |
| |
| |
| [Good] |
| https://www.reddit.com/r/cpp/comments/q2t54l/worlds_fastest_chess_move_generator_2_billion/ |
| |
| https://github.com/Gigantua/Gigantua |
| |
| |
| https://gist.github.com/ekmadsen/d140be3c81a8d86b4698332cb8683dcc |
| |
| https://gist.github.com/ekmadsen |
| |
| https://svn.filezilla-project.org/filezilla/chess/move.hpp?revision=5155&view=markup |
| |
| |
| |
| |
https://github.com/AaronBecker/daydreamer/blob/release/v1/book_ctg.cc | https://github.com/AaronBecker/daydreamer/blob/release/v1/book_ctg.cc |
| |
| http://www.pgnmentor.com/files.html#openings |
| |
| https://old.chesstempo.com/chess-openings.html |
| |
| https://www.reddit.com/r/chess/comments/69t7s3/is_there_an_open_fen_database/ |
| |
| https://www.hiarcs.com/chess-opening-book-free.html |
| |
| https://old.chesstempo.com/chess-openings.html |
| |
| https://www.chess2u.com/t8582-bin-books-vs-ctg-books |
| |
| https://www.chess.com/forum/view/general/free-online-ctg-opening-book |
| |
| |
| |
| ---- |
| |
| ===== Perft ===== |
| |
| https://www.chessprogramming.net/perfect-perft/ |
| |
| https://open-chess.org/viewtopic.php?t=2855 |
| |
| https://github.com/abulmo/MPerft |
| |
| https://github.com/kongsian/melee-perft |
| |
| https://github.com/kongsian/melee-perft/commits/master?before=97027f12324da0231a3bf7ea759c63e818371c68+35&branch=master |
| |
| https://github.com/kongsian/melee-perft/commit/23a473ff08c87d3fed2e2502aeb4dfaa50c2b477 |
| |
| https://github.com/kongsian/melee-perft/commit/326c1f45d25e1281f1d56d580f0121aab1e70ca3 |
| |
| https://github.com/kongsian/melee-perft/commit/26babafce38341db3f434f5717c5842ebc06aa66 |
| |
| https://github.com/Gigantua/Gigantua/blob/main/Gigantua/Gigantua.cpp |
| |
| |
| |
http://hgm.nubati.net/book_format.html | http://hgm.nubati.net/book_format.html |
| |
| https://github.com/sshivaji/polyglot |
| |
| |
| |
https://web.archive.org/web/20070820072632/http://www.glaurungchess.com/lmr.html | https://web.archive.org/web/20070820072632/http://www.glaurungchess.com/lmr.html |
| |
| https://www.madchess.net/2018/12/03/madchess-3-0-beta-build-84-history-heuristics/ |
| |
| |
| |
| ---- |
| |
| |
| |
http://kirill-kryukov.com/chess/kcec/rating_list_all.html | http://kirill-kryukov.com/chess/kcec/rating_list_all.html |
| |
| https://en.wikipedia.org/wiki/Elo_rating_system |
| |
| https://www.madchess.net/ratings/position-tests/ |
| |
| |
| |
| |
---- | ---- |
| |
https://groups.google.com/g/rec.games.chess.misc/c/OeK0k5KDaf4 | 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 | https://www.schach-computer.info/wiki/index.php/BT-2630 |
| |
http://utzingerk.com/test_kaufman | http://utzingerk.com/test_kaufman |
| |
| http://ichatz.me/uniroma1/pcs2-2019/uniroma1-bioinformatics-pcs2-2019-ichatz-talk20.pdf |
| |
| https://chess.stackexchange.com/questions/19633/chess-problem-database-with-pgn-or-fen |
| |
| https://wtharvey.com/m8n2.txt |
| |
| https://www.madchess.net/ratings/position-tests/ |
| |
| |
| |
| |
http://www.open-aurec.com/wbforum/viewtopic.php?f=2&t=50747 | http://www.open-aurec.com/wbforum/viewtopic.php?f=2&t=50747 |
| |
| http://computer-chess.org/doku.php?id=computer_chess:wiki:lists:gui_protocol_support_list |
| |
| |
---- | ---- |
| |
| https://theweekinchess.com/twic |
| |