Added pickling support for ValueParams
This commit is contained in:
parent
380d4eca0b
commit
95d3c19211
2 changed files with 23 additions and 7 deletions
|
|
@ -62,15 +62,15 @@ def SeperatedVolumeMonitor(eoMonitor):
|
|||
def __call__(self):
|
||||
pass
|
||||
|
||||
class eoStat(eoStatBase, eoValueParamPy):
|
||||
class eoStat(eoStatBase, eoValueParam):
|
||||
def __init__(self):
|
||||
eoStatBase.__init__(self)
|
||||
eoValueParamPy.__init__(self)
|
||||
eoValueParam.__init__(self)
|
||||
|
||||
class eoSortedStat(eoSortedStatBase, eoValueParamPy):
|
||||
class eoSortedStat(eoSortedStatBase, eoValueParam):
|
||||
def __init__(self):
|
||||
eoSortedStatBase.__init__(self)
|
||||
eoValueParamPy.__init__(self)
|
||||
eoValueParam.__init__(self)
|
||||
|
||||
class eoAverageStat(eoStat):
|
||||
def __call__(self, pop):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue