Daniel Shawul
Daniel Shawul
Thank you for your quick response. Note that I have already built the library that way. My problem is that the .lib file it produces is much smaller than your...
I think in your cmake you have CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS which is probably why it is much larger than mine and also good for linking. If I do a ` dumpbin /exports...
Scorpio needs additional libraries to work with neural networks which are all compiled with AVX2 enabled due to performance reasons, but I guess Scorpio itself canbe be compiled without it....
Thanks again! I have fixed these issues by removing conditional compilation code that is really unnecessary at this point. c78d90706059a639f4a40
Hi Richard, Thanks for fix! Please submit a pull request of your changes.
I recommend that you use the installer as it will setup things properly and pull all the depencies. Scorpio has a lot of options that is just too much for...
I am not an expert in license's but when I put it back in 2006 it is called the "New BSD license or 3-clause BSD license". https://joinup.ec.europa.eu/licence/bsd-3-clause-new-or-revised-license The third clause...
Sure please make a PR and I will update the license. I don't really recall how/when that happened but the intention was to use the new BSD license at that...
You could try to set `t_pause()` in `my_types.h` to blank similar to what is done for `__ANDROID__`. https://github.com/dshawul/Scorpio/blob/master/src/my_types.h#L175-L185 ```C++ #if defined _WIN32 # define t_pause() YieldProcessor() # define t_sleep(x) Sleep(x)...
Not in Scorpio but my other chess engine Nebiyu: https://sites.google.com/site/dshawul/home supports a number of chess variants. It already supports the Chinese chess (xiangqi) so I suppose the korean version is...