mirror of
https://github.com/wassname/simpeg.git
synced 2026-06-30 15:00:41 +08:00
13 lines
239 B
Python
13 lines
239 B
Python
|
|
|
|
class Cooling(object):
|
|
"""Simple Beta Schedule"""
|
|
|
|
beta0 = 1.e6
|
|
beta_coolingFactor = 5.
|
|
|
|
def getBeta(self):
|
|
if self._beta is None:
|
|
return self.beta0
|
|
return self._beta / self.beta_coolingFactor
|