Both sides previous revisionPrevious revisionNext revision | Previous revision |
chess:programming:links [2022/06/01 11:27] – 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.madchess.net/2018/10/28/madchess-3-0-beta-build-39-bitboards/ | 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://en.cppreference.com/w/cpp/algorithm/find | 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 |
| |
| |
| |
https://archive.ph/jpUqo#selection-1803.200-1805.36 | 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 |
| |
| |
| |
| |
https://tutorialspoint.dev/algorithm/divide-and-conquer | 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/4527686/how-to-update-stdmap-after-using-the-find-method | https://stackoverflow.com/questions/4527686/how-to-update-stdmap-after-using-the-find-method |
| |
| |
| ---- |
| |
| ===== C++ - Math ===== |
| |
| https://www.programiz.com/cpp-programming/library-function/cmath/log |
| |
---- | ---- |
| |
https://tutorialspoint.dev/algorithm/dynamic-programming-algorithms/largest-area-rectangular-sub-matrix-equal-number-1s-0s | 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/ |
| |
| |
| |
| |
| |
---- | ---- |
| |
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/ |
| |
| |
| |
===== de Bruijn sequence ===== | ===== 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 |
https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.60.7180&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 |
| |
| |
| |
https://www.madchess.net/ | 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.madchess.net/2021/10/24/madchess-3-1-beta-26e5323-threats/ | 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/ |
| |
| |
| |
https://github.com/epeld/fen/blob/master/src/Square.hs | 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 |
| |
| |
| |
[GOOD] | [GOOD] |
https://database.lichess.org/#standard_games | 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 |
| |
| |
| |
| |
https://www.codeproject.com/Articles/5313417/Worlds-Fastest-Bitboard-Chess-Movegenerator#_comments | 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 |
| |
| |
| |
| |
https://open-chess.org/viewtopic.php?t=2855 | 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/ |
| |
| |
| |
---- | ---- |
| |
https://en.wikipedia.org/wiki/Elo_rating_system | https://en.wikipedia.org/wiki/Elo_rating_system |
| |
| https://www.madchess.net/ratings/position-tests/ |
| |
| |
| |
| |
http://ichatz.me/uniroma1/pcs2-2019/uniroma1-bioinformatics-pcs2-2019-ichatz-talk20.pdf | 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 |
| |