コード例 #1
0
 def __getstate__(self):
     """
     This method must be defined because this class uses slots.
     """
     state = _GeneralExpressionDataImpl.__getstate__(self)
     for i in _GeneralObjectiveData.__pickle_slots__:
         state[i] = getattr(self, i)
     return state
コード例 #2
0
ファイル: objective.py プロジェクト: qtothec/pyomo
 def __getstate__(self):
     """
     This method must be defined because this class uses slots.
     """
     state = _GeneralExpressionDataImpl.__getstate__(self)
     for i in _GeneralObjectiveData.__pickle_slots__:
         state[i] = getattr(self,i)
     return state