Skip to content

Commit

Permalink
Int
Browse files Browse the repository at this point in the history
  • Loading branch information
PharosAbad committed Apr 28, 2023
1 parent f48e8ae commit 7f57678
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ end
kwargs are from the fields of Settings{T<:AbstractFloat} for Float64 and BigFloat
maxIter::Int64 #777
maxIter::Int #777
scaleStep::T #0.99 a crude step scaling factor (using Mehrotra's heuristic maybe better)
tol::T #2^-26 ≈ 1.5e-8 general (not use in OOQP solver)
tolMu::T #2^-52 ≈ 2.2e-16 violation of the complementarity condition
Expand All @@ -116,7 +116,7 @@ kwargs are from the fields of Settings{T<:AbstractFloat} for Float64 and BigFloa
see [`ooqp-userguide.pdf`](http://www.cs.wisc.edu/~swright/ooqp/ooqp-userguide.pdf) or [`Working with the QP Solver`](https://github.com/emgertz/OOQP/blob/master/doc-src/ooqp-userguide/ooqp4qpsolver.tex)
"""
struct Settings{T<:AbstractFloat}
maxIter::Int64 #777
maxIter::Int #777
scaleStep::T # 0.99
tol::T #2^-26
tolMu::T #2^-47
Expand Down

0 comments on commit 7f57678

Please sign in to comment.