pygeoinf 1.1.6__tar.gz → 1.1.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/PKG-INFO +1 -1
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/hilbert_space.py +2 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/linear_solvers.py +6 -1
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pyproject.toml +1 -1
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/LICENSE +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/README.md +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/__init__.py +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/direct_sum.py +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/forward_problem.py +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/gaussian_measure.py +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/inversion.py +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/linear_bayesian.py +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/linear_forms.py +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/linear_optimisation.py +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/operators.py +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/random_matrix.py +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/symmetric_space/__init__.py +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/symmetric_space/circle.py +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/symmetric_space/sphere.py +0 -0
- {pygeoinf-1.1.6 → pygeoinf-1.1.7}/pygeoinf/symmetric_space/symmetric_space.py +0 -0
|
@@ -172,7 +172,12 @@ class IterativeLinearSolver(LinearSolver):
|
|
|
172
172
|
"""
|
|
173
173
|
Solves the adjoint linear system A*y = x for y.
|
|
174
174
|
"""
|
|
175
|
-
|
|
175
|
+
adjoint_preconditioner = (
|
|
176
|
+
None
|
|
177
|
+
if preconditioner is None
|
|
178
|
+
else preconditioner.adjoint
|
|
179
|
+
)
|
|
180
|
+
return self.solve_linear_system(operator.adjoint, adjoint_preconditioner, x, y0)
|
|
176
181
|
|
|
177
182
|
def __call__(
|
|
178
183
|
self,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|