def __init__(self, port): #member variable (iteration counter, incremented in call back function of optimizer) self.iterationStep = 0 #Run constructor of super class (start server, so we won't return, do not place #any other statements after the __init()__ of the constructor, or otherwise, start #RPC server as a daemon, see e.g here: https://gist.github.com/amitsaha/4969431) OZsolver.__init__(self, port)
def __init__(self, port): #First run constructor of super class OZsolver.__init__(self, port)
def __init__(self, port): # First run constructor of super class OZsolver.__init__(self, port)