|
|
__init__(self,
x,
maxloops=-1,
logger=None,
share=None)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
|
|
|
run_to_change(self,
ncw=1,
acceptable_step=None,
update_T=False)
Run the Markov Chain Monte-Carlo until it finds an
acceptable step. |
source code
|
|
|
|
|
|
|
close(self)
After calling close(), it is no longer legal to call run_to_change(),
run_to_ergodic(), or run_to_bottom(). |
source code
|
|
|
|
run_to_ergodic(self,
ncw=1,
T=1.0)
Run the stepper until it has explored all of parameter space
ncw times (as best as we can estimate). |
source code
|
|
|
|
run_to_bottom(self,
ns=3,
acceptable_step=None)
Run the Markov Chain Monte-Carlo until it converges
near a minimum. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|