First commit: minmax and alphabeta implemented

This commit is contained in:
Yorick Barbanneau 2023-12-14 21:58:35 +01:00
commit 45abd8c7eb
7 changed files with 593 additions and 0 deletions

8
src/shell.nix Normal file
View file

@ -0,0 +1,8 @@
with (import <nixpkgs> {});
mkShell {
buildInputs = [
# Defines a python + set of packages.
python3
];
}