You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've tried adding the option -DSUPPORT_19x19 to the CMAKE_CXX_FLAGS, based on the configure file of benzene-1 , but I run into the following issue: src/util/Bitset.hpp sets BITSETSIZE to 384 which breaks BOOST_STATIC_ASSERT(BITSETSIZE <= 256); from src/mohex/MoHexBoard.hpp. If I comment out the assertion, the project compiles fine and the player seems to handle board size 13 to 15 well, but seems to enter into an infinite loop on board size 17 to 19 (which is not surprising, the assertion was there for a reason!).
I am more interested in getting a good solver to run than Monte Carlo player, so if the issue is specific to mohex but I can another component, then that'd be fine in my situation.
The text was updated successfully, but these errors were encountered:
Is it possible to enable board size 19x19?
I've tried adding the option
-DSUPPORT_19x19
to the CMAKE_CXX_FLAGS, based on the configure file of benzene-1 , but I run into the following issue:src/util/Bitset.hpp
setsBITSETSIZE
to 384 which breaksBOOST_STATIC_ASSERT(BITSETSIZE <= 256);
fromsrc/mohex/MoHexBoard.hpp
. If I comment out the assertion, the project compiles fine and the player seems to handle board size 13 to 15 well, but seems to enter into an infinite loop on board size 17 to 19 (which is not surprising, the assertion was there for a reason!).I am more interested in getting a good solver to run than Monte Carlo player, so if the issue is specific to mohex but I can another component, then that'd be fine in my situation.
The text was updated successfully, but these errors were encountered: