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
Some functions, for example a specific N-queens solver has a restriction on the acceptable scale values. In this case, the N-queens solver does not support values bigger than 32.
Other methods might throw a StackOverflowError for too large values of scale.
Can this be handled somehow? For example, by only using scale values of 1 - upperLimit for these methods?
The text was updated successfully, but these errors were encountered:
Some functions, for example a specific N-queens solver has a restriction on the acceptable
scale
values. In this case, the N-queens solver does not support values bigger than 32.Other methods might throw a
StackOverflowError
for too large values ofscale
.Can this be handled somehow? For example, by only using scale values of 1 - upperLimit for these methods?
The text was updated successfully, but these errors were encountered: