@@ -17,7 +17,6 @@ def __init__(
1717 no_regularization_add_to_curvature_diag_value : float = None ,
1818 use_w_tilde_numpy : bool = False ,
1919 use_source_loop : bool = False ,
20- use_linear_operators : bool = False ,
2120 image_mesh_min_mesh_pixels_per_pixel = None ,
2221 image_mesh_min_mesh_number : int = 5 ,
2322 image_mesh_adapt_background_percent_threshold : float = None ,
@@ -47,9 +46,6 @@ def __init__(
4746 which exploit sparsity to do the calculation normally in a more efficient way).
4847 use_source_loop
4948 Shhhh its a secret.
50- use_linear_operators
51- For an interferometer inversion, whether to use the linear operator solution to solve the linear system
52- or not (this input does nothing for dataset data).
5349 image_mesh_min_mesh_pixels_per_pixel
5450 If not None, the image-mesh must place this many mesh pixels per image pixels in the N highest weighted
5551 regions of the adapt data, or an `InversionException` is raised. This can be used to force the image-mesh
@@ -73,7 +69,6 @@ def __init__(
7369 self ._use_positive_only_solver = use_positive_only_solver
7470 self ._positive_only_uses_p_initial = positive_only_uses_p_initial
7571 self ._use_border_relocator = use_border_relocator
76- self .use_linear_operators = use_linear_operators
7772 self .force_edge_pixels_to_zeros = force_edge_pixels_to_zeros
7873 self ._no_regularization_add_to_curvature_diag_value = (
7974 no_regularization_add_to_curvature_diag_value
0 commit comments