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 59ac082 commit 3672e71Copy full SHA for 3672e71
post_processing/jacobian_summary.jl
@@ -8,7 +8,7 @@ sparse approximations against the dense matrix.
8
function print_jacobian_summary(integrator)
9
Y = integrator.u
10
t = integrator.t
11
- (; p, dt) = integrator
+ (; p) = integrator
12
timestepper_alg = integrator.alg
13
tableau_coefficients =
14
timestepper_alg isa CA.CTS.RosenbrockAlgorithm ?
@@ -19,7 +19,7 @@ function print_jacobian_summary(integrator)
19
20
FT = eltype(Y)
21
γs = filter(!iszero, CA.LinearAlgebra.diag(tableau_coefficients))
22
- dtγ = dt * FT(γs[end])
+ dtγ = p.dt * FT(γs[end])
23
scalar_names = CA.scalar_field_names(Y)
24
block_keys = Iterators.product(scalar_names, scalar_names)
25
0 commit comments