From 4e69bd39778cd47f42d6a82c4e3999873572967c Mon Sep 17 00:00:00 2001 From: TiynGER Date: Tue, 27 Apr 2021 00:55:30 +0200 Subject: [PATCH] engine: Readme update according to used algorithm --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 7fcc81f..7b4edb5 100644 --- a/README.md +++ b/README.md @@ -28,3 +28,8 @@ To extract it into html run `nim doc --project --index:on --outdir:htmldocs game Due to easier off the board checking a [10x12](https://www.chessprogramming.org/10x12_Board) board is used. + +### Engine + +The engine uses a simple implementation of the +[Minimax](https://www.chessprogramming.org/Minimax)-algorithm.