Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jagot committed Feb 23, 2024
1 parent 539ce85 commit eae92e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/newton.jl
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ end
@testset "Matrix polynomials" begin
@testset "Inhomogeneous coupled ODEs, $kind" for (kind,m,tol) in [(:real,43,1e-12), (:complex,60,1e-12)]
n = 10 # Number of ODEs
Y₀ = 1.0*ones(n)
Y₀ = 1.0*ones(kind == :real ? Float64 : ComplexF64, n)
G = -3*ones(n) # Inhomogeneous terms

n_discr = 1000 # Number of points spanning eigenspectrum interval
Expand Down

0 comments on commit eae92e4

Please sign in to comment.