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
Currently, there is a hardcoded value of 219 threshold that switches whether an algorithm should be run with depth-first or with breadth-first operations. Yet, this variable was set based on hardware from the end of the 90s.
Hence, it would be useful if this variable could be changed more easily. This can be done in one of two ways:
Turn it into a CMake variable that is then injected with the preprocessor.
Turn the threshold into a global variable that you can change at run-time.
Turn the threshold into a global variable that is set during initialisation based on the amount of available memory (see i-level cuts for Adiar here)
The text was updated successfully, but these errors were encountered:
Currently, there is a hardcoded value of 219 threshold that switches whether an algorithm should be run with depth-first or with breadth-first operations. Yet, this variable was set based on hardware from the end of the 90s.
Hence, it would be useful if this variable could be changed more easily. This can be done in one of two ways:
The text was updated successfully, but these errors were encountered: