Skip to content

Commit ce10ee4

Browse files
author
Daniel Ruprecht
committed
changed returned stability matrix to dense format
1 parent 479caf0 commit ce10ee4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parareal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def get_parareal_stab_function(self, k, ucoarse=None):
9090
E_power_k += Emat**j
9191

9292
Mat = C1.dot(E_power_k.dot(Bmat.dot(C2)))
93-
return Mat
93+
return Mat.todense()
9494

9595
# Returns the largest singular value of the error propagation matrix
9696
def get_max_svd(self, ucoarse=None):

0 commit comments

Comments
 (0)