Skip to content

Commit 798c925

Browse files
committed
black...
1 parent 1f6470c commit 798c925

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pySDC/projects/FastWaveSlowWave/runmultiscale_acoustic.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ def compute_and_plot_solutions():
126126
x_0 = 0.75
127127
# x_1 = 0.25
128128

129-
assert np.isclose(np.linalg.norm(uend[1, :], np.inf), 8.489e-01, 1E-03)
130-
assert np.isclose(np.linalg.norm(pnew_dirk, np.inf), 1.003e+00, 1E-03)
131-
assert np.isclose(np.linalg.norm(pnew_imex, np.inf), 2.762e+21, 1E-03)
129+
assert np.isclose(np.linalg.norm(uend[1, :], np.inf), 8.489e-01, 1e-03)
130+
assert np.isclose(np.linalg.norm(pnew_dirk, np.inf), 1.003e00, 1e-03)
131+
assert np.isclose(np.linalg.norm(pnew_imex, np.inf), 2.762e21, 1e-03)
132132

133133
print('Maximum pressure in SDC: %5.3e' % np.linalg.norm(uend[1, :], np.inf))
134134
print('Maximum pressure in DIRK: %5.3e' % np.linalg.norm(pnew_dirk, np.inf))

pySDC/tests/test_projects/test_asympconv/test_PFASST.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ def test_main():
77

88
main()
99

10+
1011
@pytest.mark.base
1112
def test_Linf():
1213
from pySDC.projects.AsympConv.PFASST_conv_Linf import run_advection, run_diffusion

0 commit comments

Comments
 (0)