Skip to content

Commit 9d7963b

Browse files
Jammy2211Jammy2211
authored andcommitted
all unit tests pass
1 parent fca22ce commit 9d7963b

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

autoarray/settings.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ def __init__(
4141
"""
4242
self.use_mixed_precision = use_mixed_precision
4343
self._use_positive_only_solver = use_positive_only_solver
44-
self._positive_only_uses_p_initial = positive_only_uses_p_initial
4544
self._use_border_relocator = use_border_relocator
4645
self._no_regularization_add_to_curvature_diag_value = (
4746
no_regularization_add_to_curvature_diag_value

test_autoarray/config/general.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ inversion:
1212
check_reconstruction: false # If True, the inversion's reconstruction is checked to ensure the solution of a meshs's mapper is not an invalid solution where the values are all the same.
1313
use_positive_only_solver: false # If True, inversion's use a positive-only linear algebra solver by default, which is slower but prevents unphysical negative values in the reconstructed solutuion.
1414
no_regularization_add_to_curvature_diag_value : 1.0e-8 # The default value added to the curvature matrix's diagonal when regularization is not applied to a linear object, which prevents inversion's failing due to the matrix being singular.
15-
positive_only_uses_p_initial: false # If True, the positive-only solver of an inversion's uses an initial guess of the reconstructed data's values as which values should be positive, speeding up the solver.
1615
numba:
1716
nopython: true
1817
cache: true

test_autoarray/inversion/inversion/test_settings_dict.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ def make_settings_dict():
1414
"type": "instance",
1515
"arguments": {
1616
"use_positive_only_solver": False,
17-
"positive_only_uses_p_initial": False,
1817
"no_regularization_add_to_curvature_diag_value": 1e-08,
19-
"tolerance": 1e-08,
20-
"maxiter": 250,
2118
},
2219
}
2320

0 commit comments

Comments
 (0)