Python freezes when calling Paramenters.Load
Whenever I try to load Parameters from a file, my program simply freezes, both when calling directly or when calling through the constructor of Population, I modified the source code to have prints on several locations and it does only freeze when calling Parameter.Load. It also happens with both the Load with a ifstream and a char*.
On OS X El Capitan with Python 2.7.10
I have the same issue but running with python 3.5.1 on Windows.
Does this happen if you save and then load a new Parameter instance? I have had this problem with malformed files (wrong/missing values). Set parameter values manually (on your code) then save the instance and Load it to see if that works, like:
params = NEAT.Parameters()
params.MaxWeight = 20
params.Save('./params.txt')
params = NEAT.Parameters()
params.Load('./params.txt')