From 77ab42562e16ebb9edf474eb33ac92ac3de52935 Mon Sep 17 00:00:00 2001 From: Mark Bluemer Date: Wed, 12 Apr 2017 22:49:18 -0400 Subject: [PATCH] Added a citation section --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 651526f..e71b983 100644 --- a/README.md +++ b/README.md @@ -19,3 +19,9 @@ Here is an example of the bit board setup this project follows: ![bit board](/docs/bitboard.png) This orientation allows all moves to be done with either a 7 bit or 1 bit rotation. + +## Citations + +The vast majority of the project is personal work but there were some inspirations and little tricks from various sources. Any code directly copied from a source like StackOverflow is stated inline in comments. An exhaustive list of all sources used is here: +* [Checkers Bitboard Tutorial](http://www.3dkingdoms.com/checkers/bitboards.htm#movegen) +* [Compiler Friendly Bit Rotation in C](http://stackoverflow.com/questions/776508/best-practices-for-circular-shift-rotate-operations-in-c)