pygeoinf 1.2.2__tar.gz → 1.2.3__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.
Files changed (29) hide show
  1. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/PKG-INFO +1 -1
  2. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/direct_sum.py +0 -1
  3. pygeoinf-1.2.3/pygeoinf/symmetric_space/__pycache__/__init__.cpython-311.pyc +0 -0
  4. pygeoinf-1.2.3/pygeoinf/symmetric_space/__pycache__/circle.cpython-311.pyc +0 -0
  5. pygeoinf-1.2.3/pygeoinf/symmetric_space/__pycache__/sphere.cpython-311.pyc +0 -0
  6. pygeoinf-1.2.3/pygeoinf/symmetric_space/__pycache__/symmetric_space.cpython-311.pyc +0 -0
  7. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pyproject.toml +1 -1
  8. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/LICENSE +0 -0
  9. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/README.md +0 -0
  10. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/__init__.py +0 -0
  11. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/backus_gilbert.py +0 -0
  12. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/forward_problem.py +0 -0
  13. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/gaussian_measure.py +0 -0
  14. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/hilbert_space.py +0 -0
  15. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/inversion.py +0 -0
  16. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/linear_bayesian.py +0 -0
  17. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/linear_forms.py +0 -0
  18. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/linear_operators.py +0 -0
  19. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/linear_optimisation.py +0 -0
  20. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/linear_solvers.py +0 -0
  21. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/nonlinear_forms.py +0 -0
  22. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/nonlinear_operators.py +0 -0
  23. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/nonlinear_optimisation.py +0 -0
  24. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/parallel.py +0 -0
  25. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/random_matrix.py +0 -0
  26. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/symmetric_space/__init__.py +0 -0
  27. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/symmetric_space/circle.py +0 -0
  28. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/symmetric_space/sphere.py +0 -0
  29. {pygeoinf-1.2.2 → pygeoinf-1.2.3}/pygeoinf/symmetric_space/symmetric_space.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pygeoinf
3
- Version: 1.2.2
3
+ Version: 1.2.3
4
4
  Summary: A package for solving geophysical inference and inverse problems
5
5
  License: BSD-3-Clause
6
6
  Author: David Al-Attar and Dan Heathcote
@@ -395,7 +395,6 @@ class ColumnLinearOperator(LinearOperator, BlockStructure):
395
395
  x = domain.zero
396
396
  for op, y in zip(self._operators, ys):
397
397
  domain.axpy(1.0, op.adjoint(y), x)
398
- print(op.adjoint(y).data)
399
398
  return x
400
399
 
401
400
  LinearOperator.__init__(
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pygeoinf"
3
- version = "1.2.2"
3
+ version = "1.2.3"
4
4
  description = "A package for solving geophysical inference and inverse problems"
5
5
  authors = ["David Al-Attar and Dan Heathcote"]
6
6
  readme = "README.md"
File without changes
File without changes
File without changes
File without changes
File without changes