CUQIpy 1.3.0.post0.dev104__py3-none-any.whl → 1.3.0.post0.dev237__py3-none-any.whl
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.
Potentially problematic release.
This version of CUQIpy might be problematic. Click here for more details.
- cuqi/_version.py +3 -3
- cuqi/experimental/geometry/_productgeometry.py +3 -3
- cuqi/model/_model.py +1051 -347
- cuqi/pde/_pde.py +14 -10
- cuqi/testproblem/_testproblem.py +2 -3
- {cuqipy-1.3.0.post0.dev104.dist-info → cuqipy-1.3.0.post0.dev237.dist-info}/METADATA +1 -1
- {cuqipy-1.3.0.post0.dev104.dist-info → cuqipy-1.3.0.post0.dev237.dist-info}/RECORD +10 -10
- {cuqipy-1.3.0.post0.dev104.dist-info → cuqipy-1.3.0.post0.dev237.dist-info}/WHEEL +1 -1
- {cuqipy-1.3.0.post0.dev104.dist-info → cuqipy-1.3.0.post0.dev237.dist-info}/licenses/LICENSE +0 -0
- {cuqipy-1.3.0.post0.dev104.dist-info → cuqipy-1.3.0.post0.dev237.dist-info}/top_level.txt +0 -0
cuqi/_version.py
CHANGED
|
@@ -8,11 +8,11 @@ import json
|
|
|
8
8
|
|
|
9
9
|
version_json = '''
|
|
10
10
|
{
|
|
11
|
-
"date": "2025-
|
|
11
|
+
"date": "2025-05-15T09:06:20+0300",
|
|
12
12
|
"dirty": false,
|
|
13
13
|
"error": null,
|
|
14
|
-
"full-revisionid": "
|
|
15
|
-
"version": "1.3.0.post0.
|
|
14
|
+
"full-revisionid": "b9a5dd37abfe2ee51d5594630de54dd3469bfeca",
|
|
15
|
+
"version": "1.3.0.post0.dev237"
|
|
16
16
|
}
|
|
17
17
|
''' # END VERSION_JSON
|
|
18
18
|
|
|
@@ -172,10 +172,10 @@ class _ProductGeometry(Geometry):
|
|
|
172
172
|
return tuple(funvecs)
|
|
173
173
|
|
|
174
174
|
|
|
175
|
-
def __repr__(self) -> str:
|
|
175
|
+
def __repr__(self, pad="") -> str:
|
|
176
176
|
"""Representation of the product geometry."""
|
|
177
177
|
string = "{}(".format(self.__class__.__name__) + "\n"
|
|
178
178
|
for g in self.geometries:
|
|
179
|
-
string += "
|
|
180
|
-
string += ")"
|
|
179
|
+
string += pad + " {}\n".format(g.__repr__())
|
|
180
|
+
string += pad + ")"
|
|
181
181
|
return string
|