├── .gitignore ├── Demo.rar ├── Demov1.00.rar ├── LICENSE ├── README.md ├── src ├── benchmark.cpp ├── bitboard.cpp ├── bitboard.h ├── bitcount.h ├── boardtype.h ├── book.cpp ├── book.h ├── endgame.cpp ├── endgame.h ├── evaluate.cpp ├── evaluate.h ├── main.cpp ├── material.cpp ├── material.h ├── misc.cpp ├── misc.h ├── movegen.cpp ├── movegen.h ├── movepick.cpp ├── movepick.h ├── notation.cpp ├── notation.h ├── pawns.cpp ├── pawns.h ├── platform.h ├── position.cpp ├── position.h ├── psqtab.h ├── rkiss.h ├── search.cpp ├── search.h ├── thread.cpp ├── thread.h ├── timeman.cpp ├── timeman.h ├── tt.cpp ├── tt.h ├── types.h ├── uci.cpp ├── ucioption.cpp └── ucioption.h └── vs2008 ├── Challenger.sln └── Challenger.vcproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/Demo.rar -------------------------------------------------------------------------------- /Demov1.00.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/Demov1.00.rar -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/README.md -------------------------------------------------------------------------------- /src/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/benchmark.cpp -------------------------------------------------------------------------------- /src/bitboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/bitboard.cpp -------------------------------------------------------------------------------- /src/bitboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/bitboard.h -------------------------------------------------------------------------------- /src/bitcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/bitcount.h -------------------------------------------------------------------------------- /src/boardtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/boardtype.h -------------------------------------------------------------------------------- /src/book.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/book.cpp -------------------------------------------------------------------------------- /src/book.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/book.h -------------------------------------------------------------------------------- /src/endgame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/endgame.cpp -------------------------------------------------------------------------------- /src/endgame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/endgame.h -------------------------------------------------------------------------------- /src/evaluate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/evaluate.cpp -------------------------------------------------------------------------------- /src/evaluate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/evaluate.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/material.cpp -------------------------------------------------------------------------------- /src/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/material.h -------------------------------------------------------------------------------- /src/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/misc.cpp -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/movegen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/movegen.cpp -------------------------------------------------------------------------------- /src/movegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/movegen.h -------------------------------------------------------------------------------- /src/movepick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/movepick.cpp -------------------------------------------------------------------------------- /src/movepick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/movepick.h -------------------------------------------------------------------------------- /src/notation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/notation.cpp -------------------------------------------------------------------------------- /src/notation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/notation.h -------------------------------------------------------------------------------- /src/pawns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/pawns.cpp -------------------------------------------------------------------------------- /src/pawns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/pawns.h -------------------------------------------------------------------------------- /src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/platform.h -------------------------------------------------------------------------------- /src/position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/position.cpp -------------------------------------------------------------------------------- /src/position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/position.h -------------------------------------------------------------------------------- /src/psqtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/psqtab.h -------------------------------------------------------------------------------- /src/rkiss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/rkiss.h -------------------------------------------------------------------------------- /src/search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/search.cpp -------------------------------------------------------------------------------- /src/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/search.h -------------------------------------------------------------------------------- /src/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/thread.cpp -------------------------------------------------------------------------------- /src/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/thread.h -------------------------------------------------------------------------------- /src/timeman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/timeman.cpp -------------------------------------------------------------------------------- /src/timeman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/timeman.h -------------------------------------------------------------------------------- /src/tt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/tt.cpp -------------------------------------------------------------------------------- /src/tt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/tt.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/types.h -------------------------------------------------------------------------------- /src/uci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/uci.cpp -------------------------------------------------------------------------------- /src/ucioption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/ucioption.cpp -------------------------------------------------------------------------------- /src/ucioption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/src/ucioption.h -------------------------------------------------------------------------------- /vs2008/Challenger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/vs2008/Challenger.sln -------------------------------------------------------------------------------- /vs2008/Challenger.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefen/challenger/HEAD/vs2008/Challenger.vcproj --------------------------------------------------------------------------------