From fb5434695f13388790df41b6f4b293a5425d053d Mon Sep 17 00:00:00 2001 From: D Fournier Date: Tue, 10 May 2016 14:31:45 -0700 Subject: [PATCH] Alpha_s default to 1.0 --- SimPEG/Regularization.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SimPEG/Regularization.py b/SimPEG/Regularization.py index 7f50ea59..8fdb9fd5 100644 --- a/SimPEG/Regularization.py +++ b/SimPEG/Regularization.py @@ -409,7 +409,7 @@ class Simple(BaseRegularization): """ mrefInSmooth = False #: SMOOTH and SMOOTH_MOD_DIF options - alpha_s = Utils.dependentProperty('_alpha_s', 1e-6, ['_W', '_Wsmall'], "Smallness weight") + alpha_s = Utils.dependentProperty('_alpha_s', 1.0, ['_W', '_Wsmall'], "Smallness weight") alpha_x = Utils.dependentProperty('_alpha_x', 1.0, ['_W', '_Wx'], "Weight for the first derivative in the x direction") alpha_y = Utils.dependentProperty('_alpha_y', 1.0, ['_W', '_Wy'], "Weight for the first derivative in the y direction") alpha_z = Utils.dependentProperty('_alpha_z', 1.0, ['_W', '_Wz'], "Weight for the first derivative in the z direction")