Ejemplo n.º 1
0
 def __init__(self, **kwargs):
     FactorizedLambdaHypothesis.__init__(self, recurse_bound=5, maxnodes=125, **kwargs)
Ejemplo n.º 2
0
 def __init__(self, **kwargs):
     FactorizedLambdaHypothesis.__init__(self,
                                         recurse_bound=5,
                                         maxnodes=125,
                                         **kwargs)
Ejemplo n.º 3
0
 def __init__(self, **kwargs):
     if 'bound' in kwargs:
         self.recurse_bound = kwargs.pop('bound')
     self.maxnodes = 125
     FactorizedLambdaHypothesis.__init__(self, recurse_bound=self.recurse_bound, maxnodes=self.maxnodes, **kwargs)