@@ -93,25 +93,25 @@ def test__mapped_reconstructed_data_via_mapping_matrix_from():
9393
9494 reconstruction = np .array ([1.0 , 1.0 , 2.0 ])
9595
96- mapped_reconstructed_data = (
96+ mapped_reconstructed_operated_data = (
9797 aa .util .inversion .mapped_reconstructed_data_via_mapping_matrix_from (
9898 mapping_matrix = mapping_matrix , reconstruction = reconstruction
9999 )
100100 )
101101
102- assert (mapped_reconstructed_data == np .array ([1.0 , 1.0 , 2.0 ])).all ()
102+ assert (mapped_reconstructed_operated_data == np .array ([1.0 , 1.0 , 2.0 ])).all ()
103103
104104 mapping_matrix = np .array ([[0.25 , 0.50 , 0.25 ], [0.0 , 1.0 , 0.0 ], [0.0 , 0.25 , 0.75 ]])
105105
106106 reconstruction = np .array ([1.0 , 1.0 , 2.0 ])
107107
108- mapped_reconstructed_data = (
108+ mapped_reconstructed_operated_data = (
109109 aa .util .inversion .mapped_reconstructed_data_via_mapping_matrix_from (
110110 mapping_matrix = mapping_matrix , reconstruction = reconstruction
111111 )
112112 )
113113
114- assert (mapped_reconstructed_data == np .array ([1.25 , 1.0 , 1.75 ])).all ()
114+ assert (mapped_reconstructed_operated_data == np .array ([1.25 , 1.0 , 1.75 ])).all ()
115115
116116
117117def test__mapped_reconstructed_data_via_image_to_pix_unique_from ():
@@ -134,14 +134,14 @@ def test__mapped_reconstructed_data_via_image_to_pix_unique_from():
134134
135135 reconstruction = np .array ([1.0 , 1.0 , 2.0 ])
136136
137- mapped_reconstructed_data = aa .util .inversion_imaging_numba .mapped_reconstructed_data_via_image_to_pix_unique_from (
137+ mapped_reconstructed_operated_data = aa .util .inversion_imaging_numba .mapped_reconstructed_data_via_image_to_pix_unique_from (
138138 data_to_pix_unique = data_to_pix_unique .astype ("int" ),
139139 data_weights = data_weights ,
140140 pix_lengths = pix_lengths .astype ("int" ),
141141 reconstruction = reconstruction ,
142142 )
143143
144- assert (mapped_reconstructed_data == np .array ([1.0 , 1.0 , 2.0 ])).all ()
144+ assert (mapped_reconstructed_operated_data == np .array ([1.0 , 1.0 , 2.0 ])).all ()
145145
146146 pix_indexes_for_sub_slim_index = np .array (
147147 [[0 ], [1 ], [1 ], [2 ], [1 ], [1 ], [1 ], [1 ], [1 ], [2 ], [2 ], [2 ]]
@@ -164,14 +164,14 @@ def test__mapped_reconstructed_data_via_image_to_pix_unique_from():
164164
165165 reconstruction = np .array ([1.0 , 1.0 , 2.0 ])
166166
167- mapped_reconstructed_data = aa .util .inversion_imaging_numba .mapped_reconstructed_data_via_image_to_pix_unique_from (
167+ mapped_reconstructed_operated_data = aa .util .inversion_imaging_numba .mapped_reconstructed_data_via_image_to_pix_unique_from (
168168 data_to_pix_unique = data_to_pix_unique .astype ("int" ),
169169 data_weights = data_weights ,
170170 pix_lengths = pix_lengths .astype ("int" ),
171171 reconstruction = reconstruction ,
172172 )
173173
174- assert (mapped_reconstructed_data == np .array ([1.25 , 1.0 , 1.75 ])).all ()
174+ assert (mapped_reconstructed_operated_data == np .array ([1.25 , 1.0 , 1.75 ])).all ()
175175
176176
177177def test__preconditioner_matrix_via_mapping_matrix_from ():
0 commit comments