Skip to content

Commit

Permalink
Update test_algorithms.py (#963)
Browse files Browse the repository at this point in the history
Change from SIRT to CGLS, this is a CGLS related test
  • Loading branch information
epapoutsellis committed Sep 17, 2021
1 parent 3bac778 commit 3e29c5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Wrappers/Python/test/test_algorithms.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ def test_exception_initial_CGLS(self):
identity = IdentityOperator(ig)

try:
alg = SIRT(initial=initial, operator=identity, data=b, x_init=initial)
alg = CGLS(initial=initial, operator=identity, data=b, x_init=initial)
assert False
except ValueError as ve:
assert True
Expand Down Expand Up @@ -1118,4 +1118,4 @@ def test_compare_with_PDHG(self):
np.testing.assert_almost_equal(psnr(admm.solution, pdhg.solution), 84.55162459062069, decimal=4)

def tearDown(self):
pass
pass

0 comments on commit 3e29c5b

Please sign in to comment.