feat : add multi threaded stockfish 16

This commit is contained in:
GuillaumeSD
2024-03-09 02:26:23 +01:00
parent 9b70140b83
commit 0ffba8c6c7
9 changed files with 89 additions and 28 deletions

View File

@@ -39,7 +39,7 @@ export default function EvaluationBar({ height }: Props) {
alignItems="center"
width="2rem"
height={height}
border={`1px solid black`}
border="1px solid black"
borderRadius="5px"
>
<Box

View File

@@ -23,7 +23,7 @@ export default function Accuracies() {
lineHeight={1}
padding={1}
fontWeight="bold"
border={`1px solid #424242`}
border="1px solid #424242"
>
{`${gameEval?.accuracy.white.toFixed(1)} %`}
</Typography>
@@ -37,7 +37,7 @@ export default function Accuracies() {
lineHeight={1}
padding={1}
fontWeight="bold"
border={`1px solid #424242`}
border="1px solid #424242"
>
{`${gameEval?.accuracy.black.toFixed(1)} %`}
</Typography>