Skip to content

Commit

Permalink
bugfix for benchmark with qmat
Browse files Browse the repository at this point in the history
  • Loading branch information
pancetta committed Jun 24, 2024
1 parent 7d0f7ce commit 23755d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pySDC/tests/test_benchmarks/test_collocation.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

from pySDC.core.collocation import CollBase

t_start = np.random.rand(1) * 0.2
t_end = 0.8 + np.random.rand(1) * 0.2
t_start = float(np.random.rand(1) * 0.2)
t_end = float(0.8 + np.random.rand(1) * 0.2)

tolQuad = 1e-13

Expand Down

0 comments on commit 23755d1

Please sign in to comment.