Moved parameters to separate file. Documentation updates.

This commit is contained in:
rowanc1
2014-01-24 09:36:01 -07:00
parent 18476e53c2
commit cae723eb0e
14 changed files with 218 additions and 184 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
from SimPEG import Utils, Model, np, sp
import Utils, Model, Parameters, numpy as np, scipy.sparse as sp
class BaseRegularization(object):
"""
@@ -23,7 +23,7 @@ class BaseRegularization(object):
assert isinstance(model, self.modelPair), "Incorrect model for this regularization"
self.model = model
mref = Utils.ParameterProperty('mref', default=None, doc='Reference model.')
mref = Parameters.ParameterProperty('mref', default=None, doc='Reference model.')
@property
def parent(self):