Skip to content

Commit

Permalink
lower tol on qme
Browse files Browse the repository at this point in the history
  • Loading branch information
thorek1 committed Oct 20, 2024
1 parent 180585a commit 22e3709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algorithms/quadratic_matrix_equation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function solve_quadratic_matrix_equation(A::AbstractMatrix{R},
initial_guess::AbstractMatrix{R} = zeros(0,0),
quadratic_matrix_equation_solver::Symbol = :doubling,
timer::TimerOutput = TimerOutput(),
tol::AbstractFloat = 1e-14,
tol::AbstractFloat = 1e-13, # 1e-14 is too tight
verbose::Bool = false) where R <: Real
if length(initial_guess) > 0
X = initial_guess
Expand Down

0 comments on commit 22e3709

Please sign in to comment.