We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5f3dc0f + 19d1fb4 commit fa6e862Copy full SHA for fa6e862
odl/test/largescale/solvers/nonsmooth/default_functionals_slow_test.py
@@ -198,6 +198,12 @@ def test_convex_conj_defintion(functional):
198
pytest.skip('functional has no convex conjugate')
199
return
200
201
+ if (isinstance(f_convex_conj, odl.solvers.FunctionalTranslation) and
202
+ isinstance(f_convex_conj.functional,
203
+ FunctionalDefaultConvexConjugate)):
204
+ pytest.skip('functional has no convex conjugate with call')
205
+ return
206
+
207
for _ in range(100):
208
y = noise_element(functional.domain)
209
f_convex_conj_y = f_convex_conj(y)
0 commit comments