def __init__(self, system, method=DEFAULT, name=DEFAULT, parameters=DEFAULT, ): if method is DEFAULT: from CalcTrollHosts import DEFAULT_METHOD method = DEFAULT_METHOD self.__method = method inputs = self.createInputs() HasInputs.__init__(self, inputs=inputs)
def isDone(self): if not self.__updated: self.update() return HasInputs.isDone(self)
def isDone(self): return HasInputs.isDone(self)