Skip to content

Commit

Permalink
Remove unused.
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminRodenberg committed Sep 2, 2024
1 parent b4bca81 commit e889225
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions partitioned-heat-conduction/solver-fenics/heat_pySDC.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,7 @@ def setup_problem(
P.t_start = t

# Retrieve the result at the end of the timestep from pySDC
# Possible statistics generated by pySDC can be accessed via the 'stats' variable if needed
uend, stats = controller.run(u_n, t0=t, Tend=t + float(dt))
uend, _ = controller.run(u_n, t0=t, Tend=t + float(dt))

# Update the buffer with the new solution values
u_np1 = uend.values
Expand Down

0 comments on commit e889225

Please sign in to comment.