Skip to content

Commit

Permalink
back to higher tol on sylvester
Browse files Browse the repository at this point in the history
  • Loading branch information
thorek1 committed Oct 28, 2024
1 parent 03ddfbe commit af6e8a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algorithms/sylvester.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function solve_sylvester_equation(A::M,
C::O;
initial_guess::AbstractMatrix{<:AbstractFloat} = zeros(0,0),
sylvester_algorithm::Symbol = :doubling,
tol::AbstractFloat = 1e-12,
tol::AbstractFloat = 1e-14,
timer::TimerOutput = TimerOutput(),
verbose::Bool = false) where {M <: AbstractMatrix{Float64}, N <: AbstractMatrix{Float64}, O <: AbstractMatrix{Float64}}
@timeit_debug timer "Choose matrix formats" begin
Expand Down

0 comments on commit af6e8a7

Please sign in to comment.