Easy way to print out parameters of heuristic function

Hi,

did anyone find a good and easy way to print out variables from the heuristic function? I am trying some stuff out, however I am not sure about the parameters and would like to see them while tuning.
I tried to simply put a print command in the function definition of my heuristic function, however it does not print anything if I am running my scenarios in the tutorial_common_search file

Thanks in advance,
Lukas

Hi lukasge,

you can continuously print the values in the search_alg() function. It will be displayed in the jupyter notebook.
Another way is to update the stat dictionary.
If you are using pycharm to debug your code you probably need to check in which Thread you can access the features due to the multiprocessing.
Kind regards,
Marc