Beispiel #1
0
 def __init__(self, _master=None, _model=None):
     with objecttools.ResetAttrFuncs(self):
         self._master = _master
         self._model = _model
         self._type2filename2variable = {}
Beispiel #2
0
 def __init__(self):
     with objecttools.ResetAttrFuncs(self):
         self._dict = {}
Beispiel #3
0
 def __init__(self, *args, **kwargs):
     with objecttools.ResetAttrFuncs(self):
         self.subpars = None
         self.fastaccess = None
         self._coefs = {}
     parametertools.Parameter.__init__(self, *args, **kwargs)
Beispiel #4
0
 def __init__(self, subvars: parametertools.SubParameters):
     with objecttools.ResetAttrFuncs(self):
         super().__init__(subvars)
         self.fastaccess = None
         self._coefs: Dict[str, numpy.ndarray] = {}
Beispiel #5
0
 def __init__(self, subvars: parametertools.SubParameters) -> None:
     with objecttools.ResetAttrFuncs(self):
         super().__init__(subvars)
         self.fastaccess = None
         self._coefs = {}