ladybird/Userland/Libraries/LibChess
Peter Elliott 34433f5dc4 LibChess: Compact the Defenitions of various chess related types
before:
sizeof(Board)=344, sizeof(Move)=36, sizeof(Piece)=4, sizeof(Square)=8

after:
sizeof(Board)=108, sizeof(Move)=9, sizeof(Piece)=1, sizeof(Square)=2
2021-06-22 23:09:42 +02:00
..
Chess.cpp LibChess: Only save hash of board state for repetition checking 2021-06-22 23:09:42 +02:00
Chess.h LibChess: Compact the Defenitions of various chess related types 2021-06-22 23:09:42 +02:00
CMakeLists.txt Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
UCICommand.cpp Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
UCICommand.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00
UCIEndpoint.cpp Everywhere: Turn #if *_DEBUG into dbgln_if/if constexpr 2021-05-01 21:25:06 +02:00
UCIEndpoint.h Everything: Move to SPDX license identifiers in all files. 2021-04-22 11:22:27 +02:00