def to_string_helper(self): if self._to_string_helper_FilterRunResult is None: self._to_string_helper_FilterRunResult = ToStringHelper(self) \ .add('last_obs_result', self._last_obs_result) \ .add('cumulative_log_likelihood', self._cumulative_log_likelihood) \ .add('df', self._df) return self._to_string_helper_FilterRunResult
def to_string_helper(self): if self._to_string_helper_Obs is None: self._to_string_helper_Obs = ToStringHelper(self) \ .add('time', self._time) \ .add('distr', self._distr) ##\ ##.add('observable', self._observable) return self._to_string_helper_Obs
def to_string_helper(self): if self._to_string_helper_FilterState is None: self._to_string_helper_FilterState = ToStringHelper(self) \ .add('filter_name', self._filter_name) \ .add('time', self._time) \ .add('is_posterior', self._is_posterior) return self._to_string_helper_FilterState
def to_string_helper(self): if self._to_string_helper_TrueValue is None: self._to_string_helper_TrueValue = ToStringHelper(self) \ .add('filter_name', self._filter_name) \ .add('time', self._time) \ .add('value', self._value) return self._to_string_helper_TrueValue
def to_string_helper(self): if self._to_string_helper_Pype is None: self._to_string_helper_Pype = ToStringHelper(self) \ .add('name', self._name) \ .add('direction', self._direction) \ .add('host', self._host) \ .add('port', self._port) return self._to_string_helper_Pype
def to_string_helper(self): if self._to_string_helper_ObsResult is None: self._to_string_helper_ObsResult = ToStringHelper(self) \ .add('accepted', self._accepted) \ .add('obs', self._obs) \ .add('predicted_obs', self._predicted_obs) \ .add('innov_distr', self._innov_distr) \ .add('log_likelihood', self._log_likelihood) return self._to_string_helper_ObsResult
def to_string_helper(self): if self._to_string_helper_Work is None: self._to_string_helper_Work = ToStringHelper(self) \ .add('work_id', self._work_id) \ .add('func', self._func) \ .add('args', self._args) \ .add('kwargs', self._kwargs) \ .add('call_count', self._call_count) \ .add('repeat_count', self._repeat_count) \ .add('info', self._info) return self._to_string_helper_Work
def to_string_helper(self): if self._to_string_helper_Work_Result is None: self._to_string_helper_Work_Result = ToStringHelper(self) \ .add('work_id', self._work_id) \ .add('func', self._func) \ .add('args', self._args) \ .add('kwargs', self._kwargs) \ .add('call_count', self._call_count) \ .add('repeat_count', self._repeat_count) \ .add('info', self._info) \ .add('evaluation_id', self._evaluation_id) \ .add('result', self._result) \ .add('exception', self._exception) \ .add('start_datetime', self._start_datetime) \ .add('seconds_per_call', self._seconds_per_call) \ .add('hostname', self._hostname) \ .add('pid', self._pid) \ .add('thread_id', self._pid) return self._to_string_helper_Work_Result
def to_string_helper(self): if self._to_string_helper_Process is None: self._to_string_helper_Process = ToStringHelper(self) return self._to_string_helper_Process
def to_string_helper(self): if self._to_string_helper_SolvedItoMarkovProcess is None: self._to_string_helper_SolvedItoMarkovProcess = ToStringHelper(self) \ .add('process_dim', self.process_dim) \ .add('noise_dim', self.noise_dim) return self._to_string_helper_SolvedItoMarkovProcess
def to_string_helper(self): if self._to_string_helper_Named is None: self._to_string_helper_Named = ToStringHelper(self).add('name', self._name) return self._to_string_helper_Named
def __str__(self): return ToStringHelper(self) \ .add('ready', self.ready) \ .add('work', self.work) \ .add('result', self.result) \ .to_string()
def to_string_helper(self): if self._to_string_helper_ObsModel is None: self._to_string_helper_ObsModel = ToStringHelper(self) return self._to_string_helper_ObsModel
def to_string_helper(self): return ToStringHelper(self) \ .add('param_ranges', self._param_ranges) \ .add('optimisation_id', self._optimisation_id) \ .add('evaluation_statuses', self._evaluation_statuses)
def to_string_helper(self): if self._to_string_helper_Distr is None: self._to_string_helper_Distr = ToStringHelper(self) return self._to_string_helper_Distr
def to_string_helper(self): if self._to_string_helper_DiracDeltaDistr is None: self._to_string_helper_DiracDeltaDistr = ToStringHelper(self).add( 'mean', self._mean) return self._to_string_helper_DiracDeltaDistr