the merging of two tie objects are done

This commit is contained in:
Zhenwen Dai 2014-09-03 17:24:32 +01:00
parent 2463a954f7
commit 39327e0789
4 changed files with 55 additions and 126 deletions

View file

@ -21,10 +21,6 @@ class Model(Parameterized):
self.optimization_runs = []
self.sampling_runs = []
self.preferred_optimizer = 'bfgs'
from .parameterization.ties_and_remappings import Tie
self.tie = Tie()
self.add_parameter(self.tie, -1)
self.add_observer(self.tie, self.tie._parameters_changed_notification, priority=-500)
def log_likelihood(self):
raise NotImplementedError, "this needs to be implemented to use the model class"