Skip to content

Commit

Permalink
print fix 6 dex
Browse files Browse the repository at this point in the history
  • Loading branch information
dukduque committed Nov 29, 2017
1 parent f80ae00 commit 1b64173
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/print.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ end

function Base.print(io::IO, l::SolutionLog, printmean::Bool=false, is_min=true)
if printmean
bound_string = string(" ", humanize(0.5 * (l.lower_statistical_bound + l.upper_statistical_bound), "8.3f"), " ")
bound_string = string(" ", humanize(0.5 * (l.lower_statistical_bound + l.upper_statistical_bound), "8.6f"), " ")
rtol_string = " "
else
bound_string = string(
humanize(l.lower_statistical_bound, "8.3f"), " ",
humanize(l.upper_statistical_bound, "8.3f")
humanize(l.lower_statistical_bound, "8.6f"), " ",
humanize(l.upper_statistical_bound, "8.6f")
)
if is_min
tol = 100*rtol(l.lower_statistical_bound, l.bound)
Expand Down

0 comments on commit 1b64173

Please sign in to comment.