-
-
生成直後の Board() から to_bitboard() メソッドで bitboard を取得すると [[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]] になります。
コード
```
import creversi
import numpy as np
board = creversi.Board()
print(board)
bitboard = n…
-
Okay, engine needs to get better at tactics. Various things I can do (brainstorm):
- Change move ordering to prioritize checks. This is the main thing I did bitboards for.
- Search the hash move…
-
Ran command: gcc * -o output
bitboard.h:15:9: warning: #pragma once in main file
15 | #pragma once
| ^~~~
eval.h:15:9: warning: #pragma once in main file
15 | #pragma once
…
-
I got an Exception from prft test with depth 5 from fen "8/1pp3p1/4pq1p/PP1bpk2/1Q2p3/4P1P1/2B2P2/6K1 b - - 2 33".
Code:
```
public void testPerft1() throws MoveGeneratorException {
long…
-
JMS55 updated
4 years ago
-
-
I wanted to try shogi on my Ubuntu 18.04 laptop.
The compiled stockfish doesn't start (segmentation error).
```
tamas@tami:~/Fairy-Stockfish/src$ make build ARCH=x86-64 COMP=gcc largeboards=yes
…
-
Is cfish generally run-able under Mac?
I got this errors:
make build ARCH=x86-64-bmi2 COMP=clang numa=no
Config:
debug: 'no'
sanitize: 'no'
optimize: 'yes'
arch: 'x86_64'
bits: '64'
kern…
-
Sorry for abusing your issues list but I don't know where to write.
I'd like to just thank you for your amazing tool.
I wrote [something similar](https://github.com/mcostalba/poker/tree/master)…