├── .gitignore ├── Makefile ├── README ├── amaf.h ├── engine.cpp ├── engine.h ├── goban.cpp ├── goban.h ├── gobanconst.cpp ├── group.cpp ├── group.h ├── gtp.cpp ├── gtp.h ├── gtpcommands.cpp ├── heuristics.cpp ├── main.cpp ├── mersenne.h ├── priors.cpp ├── size.h ├── tree.cpp ├── tree.h ├── zobrist.cpp └── zobrist.h /.gitignore: -------------------------------------------------------------------------------- 1 | hara 2 | make.dep 3 | *.o 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/README -------------------------------------------------------------------------------- /amaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/amaf.h -------------------------------------------------------------------------------- /engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/engine.cpp -------------------------------------------------------------------------------- /engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/engine.h -------------------------------------------------------------------------------- /goban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/goban.cpp -------------------------------------------------------------------------------- /goban.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/goban.h -------------------------------------------------------------------------------- /gobanconst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/gobanconst.cpp -------------------------------------------------------------------------------- /group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/group.cpp -------------------------------------------------------------------------------- /group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/group.h -------------------------------------------------------------------------------- /gtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/gtp.cpp -------------------------------------------------------------------------------- /gtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/gtp.h -------------------------------------------------------------------------------- /gtpcommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/gtpcommands.cpp -------------------------------------------------------------------------------- /heuristics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/heuristics.cpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/main.cpp -------------------------------------------------------------------------------- /mersenne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/mersenne.h -------------------------------------------------------------------------------- /priors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/priors.cpp -------------------------------------------------------------------------------- /size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/size.h -------------------------------------------------------------------------------- /tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/tree.cpp -------------------------------------------------------------------------------- /tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/tree.h -------------------------------------------------------------------------------- /zobrist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/zobrist.cpp -------------------------------------------------------------------------------- /zobrist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniogarro/Hara/HEAD/zobrist.h --------------------------------------------------------------------------------