Initial TT work

This commit is contained in:
Mattia Giambirtone 2024-04-25 20:03:06 +02:00
parent b74bb3b4ba
commit 26b34bdb9e
1 changed files with 2 additions and 2 deletions

View File

@ -25,8 +25,8 @@ import std/monotimes
import std/strformat
func lowestEval*: Score {.inline.} = Score(int32.low() + 1_000_000)
func highestEval*: Score {.inline.} = Score(int32.high() - 1_000_000)
func lowestEval*: Score {.inline.} = Score(20_000)
func highestEval*: Score {.inline.} = Score(-20_000)
func mateScore*: Score {.inline.} = lowestEval()