From d6677078af338dfd7213686ebdf575edd6174ef5 Mon Sep 17 00:00:00 2001 From: Sebastian Lague Date: Fri, 21 Jul 2023 18:49:01 +0200 Subject: [PATCH] Add memory limit to rules --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7b3b61a..bf08dcd 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ You can submit your entry [here](https://forms.gle/6jjj8jxNQ5Ln53ie6). * Very clever ideas though, thank you to [#12](https://github.com/SebLague/Chess-Challenge/issues/12) and [#24](https://github.com/SebLague/Chess-Challenge/issues/24). * If your bot makes an illegal move or runs out of time, it will lose the game. * Games are played with 1 minute per side by default (this can be changed in the settings class). The final tournament time control is TBD, so your bot should not assume a particular time control, and instead respect the amount of time left on the timer (given in the Think function). +* Your bot may not allocate more than 256mb of memory. * All of your code/data must be contained within the _MyBot.cs_ file. * Note: you may create additional scripts for testing/training your bot, but only the _MyBot.cs_ file will be submitted, so it must be able to run without them. * You may not rename the _MyBot_ struct or _Think_ function contained in the _MyBot.cs_ file.