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.
1 parent b9b3702 commit 1c44fc2Copy full SHA for 1c44fc2
pySDC/projects/Resilience/leaky_superconductor.py
@@ -234,7 +234,7 @@ def compare_imex_full(plotting=False):
234
newton_iter = [me[1] for me in get_sorted(stats, type='work_newton')]
235
236
if imex:
237
- assert all([me == 0 for me in newton_iter]), f"IMEX is not supposed to do Newton iterations!"
+ assert all([me == 0 for me in newton_iter]), "IMEX is not supposed to do Newton iterations!"
238
else:
239
assert max(newton_iter)/num_nodes/maxiter <= newton_iter_max, "Took more Newton iterations than allowed!"
240
if plotting: # pragma no cover
0 commit comments