Skip to content

Commit

Permalink
Silent Ipopt solver by passing option sb="yes"
Browse files Browse the repository at this point in the history
  • Loading branch information
juliohm committed Apr 23, 2018
1 parent efe036e commit 0825790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fitting.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function fit_mle(::Type{GeneralizedExtremeValue}, bm::BlockMaxima)
n = length(x)

# define optimization problem
mle = Model(solver=IpoptSolver(print_level=0))
mle = Model(solver=IpoptSolver(print_level=0, sb="yes"))
@variable(mle, μ, start=0.0)
@variable(mle, σ, start=1.0)
@variable(mle, ξ, start=0.1)
Expand Down

0 comments on commit 0825790

Please sign in to comment.