Skip to content

Instantly share code, notes, and snippets.

@SpinFast
Last active November 13, 2023 20:08
Show Gist options
  • Save SpinFast/aa1ec02f177b89858c7e1ffb9e77b543 to your computer and use it in GitHub Desktop.
Save SpinFast/aa1ec02f177b89858c7e1ffb9e77b543 to your computer and use it in GitHub Desktop.
imxrt pll sai
# System of equations for optimal clocking
#
# abs(num) < denom
# pll_out = freq*(div_select + num/denom)
# pll_out >= 650000000
# pll_out <= 1300000000
# freq = 24000000
# div_select >= 27
# div_select <= 54
# num >= -pow(2,29)
# num <= pow(2,30)
# denom >= 1
# denom <= pow(2,30)
# abs(num) < denom
# pll_post_out = pll_out / post_div_select
# post_div_select = {4,2,1}
# sai_prediv >= 1
# sai_prediv <= 8
# sai_div >= 1
# sai_div <= pow(2,6)
# sai_clock0 = pll_post_out/sai_prediv
# sai_clock0 <= 300000000
# sai_clock = sai_clock0/sai_div
# minimize clk_err = audio_clk - sai_clock
from gekko import GEKKO
m = GEKKO()
m.options.SOLVER=1 # APOPT is a MINLP solver
# optional solver settings with APOPT
m.solver_options = ['minlp_maximum_iterations 50000', \
# minlp iterations with integer solution
'minlp_max_iter_with_int_sol 50000', \
# treat minlp as nlp
'minlp_as_nlp 0', \
# nlp sub-problem max iterations
'nlp_maximum_iterations 5000', \
# 1 = depth first, 2 = breadth first
'minlp_branch_method 1', \
# maximum deviation from whole number
'minlp_integer_tol 0.001', \
# covergence tolerance
'minlp_gap_tol 0.001']
# Constants
fref = m.Const(24000000, "fref") # reference frequency
fgoal = m.Const(2*48000*16, "fgoal") # goal frequency
# Variables to solve for
div_select = m.Var(0, 27, 54, integer=True, name="div_select")
pll_num = m.Var(0, -pow(2,29), pow(2,30), integer=True, name="pll_num")
pll_denom = m.Var(1, 1, pow(2,30), integer=True, name="pll_denom")
post_div_sel = m.Var(1, 1, 4, integer=True, name="post_div_sel")
sai_prediv = m.Var(1, 1, 8, integer=True, name="sai_prediv")
sai_div = m.Var(1, 1, pow(2,6), integer=True, name="sai_div")
# Constraints
num_denom_cons = m.Equation(m.abs(pll_num) < pll_denom)
pll_out = m.Intermediate(fref*(div_select + pll_num/pll_denom), "pll_out")
pll_out_cons_min = m.Equation(pll_out >= 650000000)
pll_out_cons_max = m.Equation(pll_out <= 1300000000)
sai_pre = m.Intermediate((pll_out/post_div_sel)/sai_prediv, "sai_pre")
sai_pre_max = m.Equation(sai_pre <= 300000000)
sai_clk = m.Intermediate(sai_pre/sai_div, "sai_clk")
goal = m.Minimize(m.sqrt((fgoal-sai_clk)**2))
m.options.IMODE = 3
m.solve()
print('Results')
print(f'div_select {div_select.value}')
print(f'pll_num {pll_num.value}')
print(f'pll_denom {pll_denom.value}')
print(f'post_div_sel {post_div_sel.value}')
print(f'sai_prediv {sai_prediv.value}')
print(f'sai_div {sai_div.value}')
print(f'pll out {pll_out.value}, sai clk {sai_clk.value}, goal clk {fgoal.value}')
apm 99.45.126.203_gk_model0 <br><pre> ----------------------------------------------------------------
APMonitor, Version 1.0.1
APMonitor Optimization Suite
----------------------------------------------------------------
--------- APM Model Size ------------
Each time step contains
Objects : 0
Constants : 2
Variables : 10
Intermediates: 3
Connections : 0
Equations : 8
Residuals : 5
Number of state variables: 10
Number of total equations: - 4
Number of slack variables: - 4
---------------------------------------
Degrees of freedom : 2
----------------------------------------------
Steady State Optimization with APOPT Solver
----------------------------------------------
Iter: 1 I: 0 Tm: 0.01 NLPi: 46 Dpth: 0 Lvs: 3 Obj: 0.00E+00 Gap: NaN
Iter: 2 I: 0 Tm: 0.00 NLPi: 29 Dpth: 1 Lvs: 5 Obj: 2.61E-08 Gap: NaN
Iter: 3 I: 0 Tm: 0.00 NLPi: 29 Dpth: 2 Lvs: 7 Obj: 4.66E-10 Gap: NaN
Iter: 4 I: -1 Tm: 0.00 NLPi: 23 Dpth: 3 Lvs: 6 Obj: 4.66E-10 Gap: NaN
Iter: 5 I: 0 Tm: 0.00 NLPi: 5 Dpth: 3 Lvs: 7 Obj: 6.43E+02 Gap: NaN
Iter: 6 I: -1 Tm: 0.00 NLPi: 22 Dpth: 4 Lvs: 6 Obj: 6.43E+02 Gap: NaN
--Integer Solution: 5.27E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 7 I: 0 Tm: 0.00 NLPi: 3 Dpth: 4 Lvs: 5 Obj: 5.27E+04 Gap: 2.00E+00
Iter: 8 I: 0 Tm: 0.00 NLPi: 30 Dpth: 3 Lvs: 7 Obj: 6.05E-09 Gap: 2.00E+00
Iter: 9 I: -1 Tm: 0.00 NLPi: 1 Dpth: 4 Lvs: 6 Obj: 6.05E-09 Gap: 2.00E+00
Iter: 10 I: 0 Tm: 0.00 NLPi: 22 Dpth: 4 Lvs: 8 Obj: 6.98E-10 Gap: 2.00E+00
Iter: 11 I: -1 Tm: 0.00 NLPi: 1 Dpth: 5 Lvs: 7 Obj: 6.98E-10 Gap: 2.00E+00
Iter: 12 I: 0 Tm: 0.00 NLPi: 2 Dpth: 5 Lvs: 6 Obj: 6.31E+05 Gap: 2.00E+00
Iter: 13 I: 0 Tm: 0.01 NLPi: 35 Dpth: 5 Lvs: 8 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 14 I: -1 Tm: 0.00 NLPi: 18 Dpth: 6 Lvs: 7 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 15 I: 0 Tm: 0.00 NLPi: 32 Dpth: 6 Lvs: 9 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 16 I: -1 Tm: 0.00 NLPi: 22 Dpth: 7 Lvs: 8 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 17 I: 0 Tm: 0.01 NLPi: 44 Dpth: 7 Lvs: 10 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 18 I: -1 Tm: 0.01 NLPi: 42 Dpth: 8 Lvs: 9 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 19 I: 0 Tm: 0.00 NLPi: 31 Dpth: 8 Lvs: 11 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 20 I: -1 Tm: 0.00 NLPi: 25 Dpth: 9 Lvs: 10 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 21 I: 0 Tm: 0.00 NLPi: 3 Dpth: 9 Lvs: 9 Obj: 1.05E+05 Gap: 2.00E+00
Iter: 22 I: 0 Tm: 0.01 NLPi: 39 Dpth: 9 Lvs: 11 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 23 I: -1 Tm: 0.00 NLPi: 33 Dpth: 10 Lvs: 10 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 24 I: -9 Tm: 0.84 NLPi: 5001 Dpth: 10 Lvs: 9 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 25 I: 0 Tm: 0.00 NLPi: 8 Dpth: 10 Lvs: 10 Obj: 3.13E-06 Gap: 2.00E+00
Iter: 26 I: -1 Tm: 0.00 NLPi: 1 Dpth: 11 Lvs: 9 Obj: 3.13E-06 Gap: 2.00E+00
Iter: 27 I: 0 Tm: 0.00 NLPi: 9 Dpth: 11 Lvs: 11 Obj: 8.48E-07 Gap: 2.00E+00
Iter: 28 I: -1 Tm: 0.00 NLPi: 10 Dpth: 12 Lvs: 10 Obj: 8.48E-07 Gap: 2.00E+00
Iter: 29 I: 0 Tm: 0.00 NLPi: 8 Dpth: 12 Lvs: 11 Obj: 6.00E-07 Gap: 2.00E+00
Iter: 30 I: 0 Tm: 0.00 NLPi: 2 Dpth: 13 Lvs: 10 Obj: 3.11E+05 Gap: 2.00E+00
Iter: 31 I: 0 Tm: 0.00 NLPi: 9 Dpth: 13 Lvs: 12 Obj: 5.06E-07 Gap: 2.00E+00
Iter: 32 I: -1 Tm: 0.00 NLPi: 1 Dpth: 14 Lvs: 11 Obj: 5.06E-07 Gap: 2.00E+00
Iter: 33 I: 0 Tm: 0.00 NLPi: 6 Dpth: 14 Lvs: 13 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 34 I: -1 Tm: 0.00 NLPi: 3 Dpth: 15 Lvs: 12 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 35 I: -1 Tm: 0.00 NLPi: 3 Dpth: 15 Lvs: 11 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 36 I: 0 Tm: 0.00 NLPi: 7 Dpth: 15 Lvs: 12 Obj: 4.91E-08 Gap: 2.00E+00
Iter: 37 I: 0 Tm: 0.00 NLPi: 10 Dpth: 16 Lvs: 14 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 38 I: 0 Tm: 0.00 NLPi: 7 Dpth: 17 Lvs: 16 Obj: 7.80E-07 Gap: 2.00E+00
Iter: 39 I: 0 Tm: 0.00 NLPi: 7 Dpth: 18 Lvs: 17 Obj: 7.12E-07 Gap: 2.00E+00
Iter: 40 I: 0 Tm: 0.00 NLPi: 4 Dpth: 19 Lvs: 18 Obj: 4.91E-06 Gap: 2.00E+00
Iter: 41 I: 0 Tm: 0.00 NLPi: 7 Dpth: 20 Lvs: 19 Obj: 4.59E-06 Gap: 2.00E+00
Iter: 42 I: 0 Tm: 0.00 NLPi: 3 Dpth: 21 Lvs: 20 Obj: 1.16E+04 Gap: 2.00E+00
Iter: 43 I: -1 Tm: 0.00 NLPi: 1 Dpth: 22 Lvs: 19 Obj: 1.16E+04 Gap: 2.00E+00
--Integer Solution: 5.27E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 44 I: 0 Tm: 0.00 NLPi: 3 Dpth: 22 Lvs: 18 Obj: 6.40E+04 Gap: 2.00E+00
Iter: 45 I: 0 Tm: 0.00 NLPi: 6 Dpth: 21 Lvs: 19 Obj: 4.66E-10 Gap: 2.00E+00
Iter: 46 I: 0 Tm: 0.00 NLPi: 5 Dpth: 22 Lvs: 20 Obj: 2.33E-09 Gap: 2.00E+00
Iter: 47 I: 0 Tm: 0.00 NLPi: 4 Dpth: 23 Lvs: 21 Obj: 5.06E-06 Gap: 2.00E+00
Iter: 48 I: 0 Tm: 0.00 NLPi: 7 Dpth: 24 Lvs: 22 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 49 I: 0 Tm: 0.00 NLPi: 3 Dpth: 25 Lvs: 21 Obj: 8.90E+04 Gap: 2.00E+00
Iter: 50 I: 0 Tm: 0.00 NLPi: 7 Dpth: 25 Lvs: 23 Obj: 4.15E-06 Gap: 2.00E+00
Iter: 51 I: 0 Tm: 0.00 NLPi: 8 Dpth: 26 Lvs: 24 Obj: 2.91E-06 Gap: 2.00E+00
Iter: 52 I: 0 Tm: 0.00 NLPi: 11 Dpth: 27 Lvs: 26 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 53 I: -1 Tm: 0.00 NLPi: 1 Dpth: 28 Lvs: 25 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 54 I: -1 Tm: 0.00 NLPi: 4 Dpth: 28 Lvs: 24 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 55 I: 0 Tm: 0.00 NLPi: 8 Dpth: 28 Lvs: 25 Obj: 3.46E-07 Gap: 2.00E+00
--Integer Solution: 5.27E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 56 I: 0 Tm: 0.00 NLPi: 3 Dpth: 29 Lvs: 24 Obj: 6.40E+04 Gap: 2.00E+00
Iter: 57 I: 0 Tm: 0.00 NLPi: 7 Dpth: 29 Lvs: 25 Obj: 4.92E-06 Gap: 2.00E+00
Iter: 58 I: 0 Tm: 0.00 NLPi: 6 Dpth: 30 Lvs: 26 Obj: 4.68E-06 Gap: 2.00E+00
Iter: 59 I: 0 Tm: 0.00 NLPi: 9 Dpth: 31 Lvs: 28 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 60 I: -1 Tm: 0.00 NLPi: 3 Dpth: 32 Lvs: 27 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 61 I: 0 Tm: 0.00 NLPi: 3 Dpth: 32 Lvs: 28 Obj: 1.16E+04 Gap: 2.00E+00
Iter: 62 I: -1 Tm: 0.00 NLPi: 1 Dpth: 33 Lvs: 27 Obj: 1.16E+04 Gap: 2.00E+00
--Integer Solution: 5.27E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 63 I: 0 Tm: 0.00 NLPi: 3 Dpth: 33 Lvs: 26 Obj: 6.40E+04 Gap: 2.00E+00
Iter: 64 I: 0 Tm: 0.00 NLPi: 8 Dpth: 32 Lvs: 28 Obj: 7.57E-08 Gap: 2.00E+00
Iter: 65 I: -1 Tm: 0.00 NLPi: 7 Dpth: 33 Lvs: 27 Obj: 7.57E-08 Gap: 2.00E+00
Iter: 66 I: -1 Tm: 0.00 NLPi: 7 Dpth: 33 Lvs: 26 Obj: 7.57E-08 Gap: 2.00E+00
Iter: 67 I: 0 Tm: 0.00 NLPi: 7 Dpth: 33 Lvs: 28 Obj: 1.05E-07 Gap: 2.00E+00
Iter: 68 I: 0 Tm: 0.00 NLPi: 13 Dpth: 34 Lvs: 30 Obj: 4.41E-07 Gap: 2.00E+00
Iter: 69 I: 0 Tm: 0.00 NLPi: 5 Dpth: 35 Lvs: 31 Obj: 2.33E-09 Gap: 2.00E+00
Iter: 70 I: 0 Tm: 0.00 NLPi: 7 Dpth: 36 Lvs: 32 Obj: 6.98E-10 Gap: 2.00E+00
--Integer Solution: 1.83E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 71 I: 0 Tm: 0.00 NLPi: 3 Dpth: 37 Lvs: 31 Obj: 1.83E+04 Gap: 2.00E+00
Iter: 72 I: 0 Tm: 0.00 NLPi: 8 Dpth: 37 Lvs: 33 Obj: 7.95E-07 Gap: 2.00E+00
Iter: 73 I: 0 Tm: 0.00 NLPi: 15 Dpth: 38 Lvs: 35 Obj: 2.98E-08 Gap: 2.00E+00
Iter: 74 I: 0 Tm: 0.00 NLPi: 3 Dpth: 39 Lvs: 34 Obj: 1.16E+04 Gap: 2.00E+00
Iter: 75 I: 0 Tm: 0.00 NLPi: 7 Dpth: 39 Lvs: 35 Obj: 4.93E-06 Gap: 2.00E+00
Iter: 76 I: 0 Tm: 0.00 NLPi: 5 Dpth: 40 Lvs: 36 Obj: 4.96E-06 Gap: 2.00E+00
Iter: 77 I: 0 Tm: 0.00 NLPi: 6 Dpth: 41 Lvs: 37 Obj: 4.09E-07 Gap: 2.00E+00
Iter: 78 I: 0 Tm: 0.00 NLPi: 3 Dpth: 42 Lvs: 36 Obj: 1.16E+04 Gap: 2.00E+00
Iter: 79 I: 0 Tm: 0.00 NLPi: 6 Dpth: 42 Lvs: 37 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 80 I: 0 Tm: 0.00 NLPi: 11 Dpth: 43 Lvs: 39 Obj: 1.79E-06 Gap: 2.00E+00
Iter: 81 I: 0 Tm: 0.00 NLPi: 7 Dpth: 44 Lvs: 40 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 82 I: 0 Tm: 0.00 NLPi: 7 Dpth: 45 Lvs: 41 Obj: 2.33E-10 Gap: 2.00E+00
--Integer Solution: 1.76E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 83 I: 0 Tm: 0.00 NLPi: 3 Dpth: 46 Lvs: 40 Obj: 1.76E+04 Gap: 2.00E+00
Iter: 84 I: 0 Tm: 0.00 NLPi: 7 Dpth: 46 Lvs: 41 Obj: 2.10E-09 Gap: 2.00E+00
Iter: 85 I: 0 Tm: 0.00 NLPi: 5 Dpth: 47 Lvs: 42 Obj: 1.33E-08 Gap: 2.00E+00
--Integer Solution: 1.76E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 86 I: 0 Tm: 0.00 NLPi: 3 Dpth: 48 Lvs: 41 Obj: 7.51E+04 Gap: 2.00E+00
Iter: 87 I: 0 Tm: 0.00 NLPi: 6 Dpth: 48 Lvs: 42 Obj: 7.14E-07 Gap: 2.00E+00
Iter: 88 I: 0 Tm: 0.00 NLPi: 9 Dpth: 49 Lvs: 43 Obj: 2.09E-06 Gap: 2.00E+00
Iter: 89 I: 0 Tm: 0.00 NLPi: 4 Dpth: 50 Lvs: 44 Obj: 4.95E-06 Gap: 2.00E+00
Iter: 90 I: 0 Tm: 0.00 NLPi: 9 Dpth: 51 Lvs: 45 Obj: 4.11E-07 Gap: 2.00E+00
Iter: 91 I: 0 Tm: 0.00 NLPi: 5 Dpth: 52 Lvs: 46 Obj: 4.40E-06 Gap: 2.00E+00
Iter: 92 I: -1 Tm: 0.00 NLPi: 7 Dpth: 53 Lvs: 45 Obj: 4.40E-06 Gap: 2.00E+00
--Integer Solution: 1.76E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 93 I: 0 Tm: 0.00 NLPi: 3 Dpth: 53 Lvs: 44 Obj: 1.96E+04 Gap: 2.00E+00
Iter: 94 I: 0 Tm: 0.00 NLPi: 6 Dpth: 52 Lvs: 45 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 95 I: 0 Tm: 0.00 NLPi: 5 Dpth: 53 Lvs: 46 Obj: 1.86E-08 Gap: 2.00E+00
Iter: 96 I: 0 Tm: 0.00 NLPi: 5 Dpth: 54 Lvs: 47 Obj: 4.99E-06 Gap: 2.00E+00
Iter: 97 I: 0 Tm: 0.00 NLPi: 8 Dpth: 55 Lvs: 48 Obj: 4.64E-06 Gap: 2.00E+00
Iter: 98 I: 0 Tm: 0.00 NLPi: 3 Dpth: 56 Lvs: 47 Obj: 5.71E+04 Gap: 2.00E+00
Iter: 99 I: 0 Tm: 0.00 NLPi: 7 Dpth: 56 Lvs: 49 Obj: 3.17E-06 Gap: 2.00E+00
Iter: 100 I: 0 Tm: 0.00 NLPi: 7 Dpth: 57 Lvs: 50 Obj: 3.52E-07 Gap: 2.00E+00
Iter: 101 I: 0 Tm: 0.00 NLPi: 13 Dpth: 58 Lvs: 52 Obj: 1.12E-07 Gap: 2.00E+00
Iter: 102 I: 0 Tm: 0.00 NLPi: 7 Dpth: 59 Lvs: 53 Obj: 1.45E-07 Gap: 2.00E+00
--Integer Solution: 1.76E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 103 I: 0 Tm: 0.00 NLPi: 3 Dpth: 60 Lvs: 52 Obj: 1.96E+04 Gap: 2.00E+00
Iter: 104 I: 0 Tm: 0.00 NLPi: 6 Dpth: 60 Lvs: 53 Obj: 6.92E-07 Gap: 2.00E+00
Iter: 105 I: 0 Tm: 0.00 NLPi: 6 Dpth: 61 Lvs: 53 Obj: 4.23E-07 Gap: 2.00E+00
Iter: 106 I: 0 Tm: 0.00 NLPi: 11 Dpth: 62 Lvs: 55 Obj: 9.39E-07 Gap: 2.00E+00
Iter: 107 I: -1 Tm: 0.00 NLPi: 7 Dpth: 63 Lvs: 54 Obj: 9.39E-07 Gap: 2.00E+00
Iter: 108 I: -1 Tm: 0.00 NLPi: 5 Dpth: 63 Lvs: 53 Obj: 9.39E-07 Gap: 2.00E+00
--Integer Solution: 1.76E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 109 I: 0 Tm: 0.00 NLPi: 3 Dpth: 63 Lvs: 52 Obj: 1.96E+04 Gap: 2.00E+00
Iter: 110 I: 0 Tm: 0.00 NLPi: 6 Dpth: 61 Lvs: 53 Obj: 2.27E-07 Gap: 2.00E+00
--Integer Solution: 1.76E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 111 I: 0 Tm: 0.00 NLPi: 3 Dpth: 62 Lvs: 52 Obj: 3.54E+04 Gap: 2.00E+00
Iter: 112 I: 0 Tm: 0.00 NLPi: 15 Dpth: 62 Lvs: 54 Obj: 4.37E-06 Gap: 2.00E+00
Iter: 113 I: 0 Tm: 0.00 NLPi: 15 Dpth: 63 Lvs: 55 Obj: 1.29E-05 Gap: 2.00E+00
Iter: 114 I: 0 Tm: 0.00 NLPi: 5 Dpth: 64 Lvs: 56 Obj: 4.66E-10 Gap: 2.00E+00
Iter: 115 I: 0 Tm: 0.00 NLPi: 6 Dpth: 65 Lvs: 56 Obj: 4.09E-07 Gap: 2.00E+00
Iter: 116 I: 0 Tm: 0.00 NLPi: 5 Dpth: 66 Lvs: 57 Obj: 4.40E-06 Gap: 2.00E+00
Iter: 117 I: -1 Tm: 0.00 NLPi: 7 Dpth: 67 Lvs: 56 Obj: 4.40E-06 Gap: 2.00E+00
Iter: 118 I: 0 Tm: 0.00 NLPi: 7 Dpth: 67 Lvs: 56 Obj: 1.40E-09 Gap: 2.00E+00
Iter: 119 I: 0 Tm: 0.00 NLPi: 10 Dpth: 68 Lvs: 57 Obj: 3.70E-06 Gap: 2.00E+00
Iter: 120 I: 0 Tm: 0.00 NLPi: 11 Dpth: 69 Lvs: 57 Obj: 1.19E-07 Gap: 2.00E+00
Iter: 121 I: 0 Tm: 0.00 NLPi: 5 Dpth: 70 Lvs: 57 Obj: 5.66E-08 Gap: 2.00E+00
Iter: 122 I: 0 Tm: 0.00 NLPi: 8 Dpth: 71 Lvs: 58 Obj: 3.89E-07 Gap: 2.00E+00
--Integer Solution: 1.76E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 123 I: 0 Tm: 0.00 NLPi: 3 Dpth: 72 Lvs: 57 Obj: 4.58E+04 Gap: 2.00E+00
Iter: 124 I: 0 Tm: 0.00 NLPi: 4 Dpth: 72 Lvs: 58 Obj: 4.90E-06 Gap: 2.00E+00
Iter: 125 I: 0 Tm: 0.00 NLPi: 7 Dpth: 73 Lvs: 60 Obj: 4.66E-10 Gap: 2.00E+00
Iter: 126 I: 0 Tm: 0.00 NLPi: 7 Dpth: 74 Lvs: 61 Obj: 3.07E-07 Gap: 2.00E+00
Iter: 127 I: 0 Tm: 0.00 NLPi: 5 Dpth: 75 Lvs: 62 Obj: 4.28E-06 Gap: 2.00E+00
Iter: 128 I: 0 Tm: 0.00 NLPi: 6 Dpth: 76 Lvs: 63 Obj: 4.68E-06 Gap: 2.00E+00
Iter: 129 I: 0 Tm: 0.00 NLPi: 9 Dpth: 77 Lvs: 65 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 130 I: -1 Tm: 0.00 NLPi: 4 Dpth: 78 Lvs: 64 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 131 I: 0 Tm: 0.00 NLPi: 3 Dpth: 78 Lvs: 63 Obj: 1.05E+05 Gap: 2.00E+00
Iter: 132 I: 0 Tm: 0.00 NLPi: 10 Dpth: 78 Lvs: 65 Obj: 1.13E-07 Gap: 2.00E+00
Iter: 133 I: -1 Tm: 0.00 NLPi: 15 Dpth: 79 Lvs: 64 Obj: 1.13E-07 Gap: 2.00E+00
Iter: 134 I: 0 Tm: 0.00 NLPi: 3 Dpth: 79 Lvs: 63 Obj: 3.11E+05 Gap: 2.00E+00
Iter: 135 I: 0 Tm: 0.00 NLPi: 10 Dpth: 79 Lvs: 65 Obj: 1.07E-05 Gap: 2.00E+00
Iter: 136 I: -1 Tm: 0.00 NLPi: 1 Dpth: 80 Lvs: 64 Obj: 1.07E-05 Gap: 2.00E+00
Iter: 137 I: -1 Tm: 0.00 NLPi: 14 Dpth: 80 Lvs: 63 Obj: 1.07E-05 Gap: 2.00E+00
Iter: 138 I: 0 Tm: 0.00 NLPi: 7 Dpth: 80 Lvs: 65 Obj: 4.15E-06 Gap: 2.00E+00
--Integer Solution: 1.76E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 139 I: 0 Tm: 0.00 NLPi: 3 Dpth: 81 Lvs: 64 Obj: 7.44E+04 Gap: 2.00E+00
Iter: 140 I: 0 Tm: 0.00 NLPi: 8 Dpth: 81 Lvs: 64 Obj: 5.01E-08 Gap: 2.00E+00
--Integer Solution: 1.76E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 141 I: 0 Tm: 0.00 NLPi: 3 Dpth: 82 Lvs: 63 Obj: 3.73E+05 Gap: 2.00E+00
Iter: 142 I: 0 Tm: 0.00 NLPi: 4 Dpth: 81 Lvs: 64 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 143 I: 0 Tm: 0.00 NLPi: 7 Dpth: 82 Lvs: 65 Obj: 2.29E-06 Gap: 2.00E+00
Iter: 144 I: 0 Tm: 0.00 NLPi: 5 Dpth: 83 Lvs: 66 Obj: 3.57E-06 Gap: 2.00E+00
Iter: 145 I: 0 Tm: 0.00 NLPi: 4 Dpth: 84 Lvs: 66 Obj: 5.87E-06 Gap: 2.00E+00
--Integer Solution: 1.50E+04 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 146 I: 0 Tm: 0.00 NLPi: 3 Dpth: 85 Lvs: 65 Obj: 1.50E+04 Gap: 2.00E+00
Iter: 147 I: 0 Tm: 0.00 NLPi: 14 Dpth: 84 Lvs: 66 Obj: 7.95E-06 Gap: 2.00E+00
Iter: 148 I: 0 Tm: 0.00 NLPi: 3 Dpth: 85 Lvs: 67 Obj: 7.07E-05 Gap: 2.00E+00
Iter: 149 I: 0 Tm: 0.00 NLPi: 7 Dpth: 86 Lvs: 68 Obj: 3.88E-06 Gap: 2.00E+00
Iter: 150 I: 0 Tm: 0.00 NLPi: 5 Dpth: 87 Lvs: 68 Obj: 1.65E-06 Gap: 2.00E+00
--Integer Solution: 5.67E+03 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 151 I: 0 Tm: 0.00 NLPi: 3 Dpth: 88 Lvs: 67 Obj: 5.67E+03 Gap: 2.00E+00
--Integer Solution: 5.67E+03 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 152 I: 0 Tm: 0.00 NLPi: 1 Dpth: 87 Lvs: 66 Obj: 3.60E+04 Gap: 2.00E+00
--Integer Solution: 3.47E+03 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 153 I: 0 Tm: 0.00 NLPi: 3 Dpth: 86 Lvs: 65 Obj: 3.47E+03 Gap: 2.00E+00
--Integer Solution: 3.47E+03 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 154 I: 0 Tm: 0.00 NLPi: 1 Dpth: 85 Lvs: 64 Obj: 7.35E+04 Gap: 2.00E+00
--Integer Solution: 3.47E+03 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 155 I: 0 Tm: 0.00 NLPi: 2 Dpth: 83 Lvs: 63 Obj: 1.65E+04 Gap: 2.00E+00
Iter: 156 I: 0 Tm: 0.00 NLPi: 9 Dpth: 82 Lvs: 64 Obj: 1.63E-09 Gap: 2.00E+00
--Integer Solution: 3.47E+03 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 157 I: 0 Tm: 0.00 NLPi: 3 Dpth: 83 Lvs: 63 Obj: 2.24E+04 Gap: 2.00E+00
Iter: 158 I: 0 Tm: 0.00 NLPi: 5 Dpth: 83 Lvs: 64 Obj: 2.27E-07 Gap: 2.00E+00
Iter: 159 I: 0 Tm: 0.00 NLPi: 5 Dpth: 84 Lvs: 65 Obj: 1.31E-06 Gap: 2.00E+00
Iter: 160 I: 0 Tm: 0.00 NLPi: 5 Dpth: 85 Lvs: 66 Obj: 5.44E-06 Gap: 2.00E+00
Iter: 161 I: 0 Tm: 0.00 NLPi: 4 Dpth: 86 Lvs: 67 Obj: 4.88E-06 Gap: 2.00E+00
Iter: 162 I: 0 Tm: 0.00 NLPi: 4 Dpth: 87 Lvs: 68 Obj: 5.24E-06 Gap: 2.00E+00
Iter: 163 I: 0 Tm: 0.00 NLPi: 8 Dpth: 88 Lvs: 69 Obj: 2.82E-08 Gap: 2.00E+00
Iter: 164 I: 0 Tm: 0.00 NLPi: 4 Dpth: 89 Lvs: 68 Obj: 5.14E-06 Gap: 2.00E+00
--Integer Solution: 3.47E+03 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 165 I: 0 Tm: 0.00 NLPi: 1 Dpth: 89 Lvs: 67 Obj: 3.60E+04 Gap: 2.00E+00
--Integer Solution: 1.50E+03 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 166 I: 0 Tm: 0.00 NLPi: 3 Dpth: 88 Lvs: 66 Obj: 1.50E+03 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 167 I: 0 Tm: 0.00 NLPi: 1 Dpth: 87 Lvs: 65 Obj: 2.86E+02 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 168 I: 0 Tm: 0.00 NLPi: 3 Dpth: 86 Lvs: 64 Obj: 3.54E+04 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 169 I: 0 Tm: 0.00 NLPi: 2 Dpth: 85 Lvs: 63 Obj: 1.91E+03 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 170 I: 0 Tm: 0.00 NLPi: 3 Dpth: 84 Lvs: 62 Obj: 3.22E+04 Gap: 2.00E+00
Iter: 171 I: 0 Tm: 0.00 NLPi: 9 Dpth: 77 Lvs: 63 Obj: 1.84E-07 Gap: 2.00E+00
Iter: 172 I: 0 Tm: 0.00 NLPi: 15 Dpth: 78 Lvs: 62 Obj: 2.56E-09 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 173 I: 0 Tm: 0.00 NLPi: 2 Dpth: 78 Lvs: 61 Obj: 8.73E+03 Gap: 2.00E+00
Iter: 174 I: 0 Tm: 0.00 NLPi: 5 Dpth: 76 Lvs: 62 Obj: 3.18E-06 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 175 I: 0 Tm: 0.00 NLPi: 3 Dpth: 77 Lvs: 61 Obj: 4.58E+04 Gap: 2.00E+00
Iter: 176 I: 0 Tm: 0.00 NLPi: 4 Dpth: 77 Lvs: 62 Obj: 2.10E-09 Gap: 2.00E+00
Iter: 177 I: 0 Tm: 0.00 NLPi: 7 Dpth: 78 Lvs: 64 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 178 I: 0 Tm: 0.00 NLPi: 8 Dpth: 79 Lvs: 64 Obj: 2.91E-06 Gap: 2.00E+00
Iter: 179 I: 0 Tm: 0.00 NLPi: 5 Dpth: 80 Lvs: 64 Obj: 4.36E-06 Gap: 2.00E+00
Iter: 180 I: 0 Tm: 0.00 NLPi: 6 Dpth: 81 Lvs: 64 Obj: 4.68E-06 Gap: 2.00E+00
Iter: 181 I: 0 Tm: 0.00 NLPi: 3 Dpth: 82 Lvs: 63 Obj: 3.11E+05 Gap: 2.00E+00
Iter: 182 I: 0 Tm: 0.00 NLPi: 9 Dpth: 79 Lvs: 65 Obj: 3.90E-07 Gap: 2.00E+00
Iter: 183 I: 0 Tm: 0.00 NLPi: 8 Dpth: 80 Lvs: 67 Obj: 4.08E-06 Gap: 2.00E+00
Iter: 184 I: 0 Tm: 0.00 NLPi: 8 Dpth: 81 Lvs: 68 Obj: 2.10E-09 Gap: 2.00E+00
Iter: 185 I: 0 Tm: 0.00 NLPi: 6 Dpth: 82 Lvs: 69 Obj: 4.09E-07 Gap: 2.00E+00
Iter: 186 I: 0 Tm: 0.00 NLPi: 3 Dpth: 83 Lvs: 68 Obj: 3.99E+05 Gap: 2.00E+00
Iter: 187 I: 0 Tm: 0.00 NLPi: 6 Dpth: 83 Lvs: 69 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 188 I: 0 Tm: 0.00 NLPi: 7 Dpth: 84 Lvs: 70 Obj: 3.44E-06 Gap: 2.00E+00
Iter: 189 I: 0 Tm: 0.00 NLPi: 4 Dpth: 85 Lvs: 71 Obj: 4.61E-06 Gap: 2.00E+00
Iter: 190 I: 0 Tm: 0.00 NLPi: 7 Dpth: 86 Lvs: 72 Obj: 4.59E-06 Gap: 2.00E+00
Iter: 191 I: 0 Tm: 0.00 NLPi: 3 Dpth: 87 Lvs: 71 Obj: 6.75E+05 Gap: 2.00E+00
Iter: 192 I: 0 Tm: 0.00 NLPi: 6 Dpth: 87 Lvs: 72 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 193 I: 0 Tm: 0.00 NLPi: 7 Dpth: 88 Lvs: 73 Obj: 6.40E-08 Gap: 2.00E+00
Iter: 194 I: 0 Tm: 0.00 NLPi: 3 Dpth: 89 Lvs: 72 Obj: 1.84E+05 Gap: 2.00E+00
Iter: 195 I: 0 Tm: 0.00 NLPi: 23 Dpth: 89 Lvs: 73 Obj: 2.19E-08 Gap: 2.00E+00
Iter: 196 I: 0 Tm: 0.00 NLPi: 3 Dpth: 90 Lvs: 72 Obj: 1.16E+04 Gap: 2.00E+00
Iter: 197 I: 0 Tm: 0.00 NLPi: 19 Dpth: 90 Lvs: 74 Obj: 7.22E-06 Gap: 2.00E+00
Iter: 198 I: 0 Tm: 0.00 NLPi: 5 Dpth: 91 Lvs: 75 Obj: 4.15E-06 Gap: 2.00E+00
Iter: 199 I: -1 Tm: 0.00 NLPi: 7 Dpth: 92 Lvs: 74 Obj: 4.15E-06 Gap: 2.00E+00
Iter: 200 I: 0 Tm: 0.00 NLPi: 7 Dpth: 92 Lvs: 74 Obj: 1.40E-09 Gap: 2.00E+00
Iter: 201 I: 0 Tm: 0.00 NLPi: 10 Dpth: 93 Lvs: 75 Obj: 3.70E-06 Gap: 2.00E+00
Iter: 202 I: 0 Tm: 0.00 NLPi: 11 Dpth: 94 Lvs: 74 Obj: 1.19E-07 Gap: 2.00E+00
Iter: 203 I: 0 Tm: 0.00 NLPi: 4 Dpth: 94 Lvs: 75 Obj: 6.98E-10 Gap: 2.00E+00
Iter: 204 I: 0 Tm: 0.00 NLPi: 7 Dpth: 95 Lvs: 76 Obj: 4.89E-06 Gap: 2.00E+00
Iter: 205 I: 0 Tm: 0.00 NLPi: 10 Dpth: 96 Lvs: 78 Obj: 2.95E-06 Gap: 2.00E+00
Iter: 206 I: -1 Tm: 0.00 NLPi: 4 Dpth: 97 Lvs: 77 Obj: 2.95E-06 Gap: 2.00E+00
Iter: 207 I: 0 Tm: 0.00 NLPi: 20 Dpth: 97 Lvs: 79 Obj: 3.55E-06 Gap: 2.00E+00
Iter: 208 I: -1 Tm: 0.00 NLPi: 1 Dpth: 98 Lvs: 78 Obj: 3.55E-06 Gap: 2.00E+00
Iter: 209 I: 0 Tm: 0.00 NLPi: 3 Dpth: 98 Lvs: 77 Obj: 1.16E+04 Gap: 2.00E+00
Iter: 210 I: 0 Tm: 0.00 NLPi: 20 Dpth: 98 Lvs: 79 Obj: 5.46E-06 Gap: 2.00E+00
Iter: 211 I: 0 Tm: 0.00 NLPi: 4 Dpth: 99 Lvs: 80 Obj: 4.76E-06 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 212 I: 0 Tm: 0.00 NLPi: 2 Dpth: 100 Lvs: 79 Obj: 2.95E+04 Gap: 2.00E+00
Iter: 213 I: 0 Tm: 0.00 NLPi: 5 Dpth: 100 Lvs: 80 Obj: 4.82E-06 Gap: 2.00E+00
Iter: 214 I: 0 Tm: 0.00 NLPi: 6 Dpth: 101 Lvs: 81 Obj: 1.40E-09 Gap: 2.00E+00
Iter: 215 I: 0 Tm: 0.00 NLPi: 8 Dpth: 102 Lvs: 82 Obj: 1.86E-09 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 216 I: 0 Tm: 0.00 NLPi: 1 Dpth: 103 Lvs: 81 Obj: 2.24E+04 Gap: 2.00E+00
Iter: 217 I: 0 Tm: 0.00 NLPi: 8 Dpth: 103 Lvs: 83 Obj: 1.86E-06 Gap: 2.00E+00
Iter: 218 I: 0 Tm: 0.00 NLPi: 8 Dpth: 104 Lvs: 84 Obj: 1.50E-06 Gap: 2.00E+00
Iter: 219 I: 0 Tm: 0.00 NLPi: 7 Dpth: 105 Lvs: 85 Obj: 6.24E-08 Gap: 2.00E+00
Iter: 220 I: 0 Tm: 0.00 NLPi: 4 Dpth: 106 Lvs: 85 Obj: 5.87E-06 Gap: 2.00E+00
Iter: 221 I: 0 Tm: 0.00 NLPi: 7 Dpth: 107 Lvs: 86 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 222 I: 0 Tm: 0.00 NLPi: 3 Dpth: 108 Lvs: 85 Obj: 5.74E+05 Gap: 2.00E+00
Iter: 223 I: 0 Tm: 0.00 NLPi: 7 Dpth: 108 Lvs: 87 Obj: 5.01E-06 Gap: 2.00E+00
Iter: 224 I: 0 Tm: 0.00 NLPi: 7 Dpth: 109 Lvs: 87 Obj: 1.88E-06 Gap: 2.00E+00
Iter: 225 I: 0 Tm: 0.00 NLPi: 3 Dpth: 110 Lvs: 86 Obj: 3.11E+05 Gap: 2.00E+00
Iter: 226 I: 0 Tm: 0.00 NLPi: 9 Dpth: 109 Lvs: 87 Obj: 1.07E-08 Gap: 2.00E+00
Iter: 227 I: 0 Tm: 0.00 NLPi: 3 Dpth: 110 Lvs: 86 Obj: 1.05E+05 Gap: 2.00E+00
Iter: 228 I: 0 Tm: 0.00 NLPi: 19 Dpth: 110 Lvs: 87 Obj: 4.27E-06 Gap: 2.00E+00
Iter: 229 I: 0 Tm: 0.00 NLPi: 5 Dpth: 111 Lvs: 86 Obj: 4.28E-06 Gap: 2.00E+00
Iter: 230 I: 0 Tm: 0.00 NLPi: 9 Dpth: 111 Lvs: 87 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 231 I: -1 Tm: 0.00 NLPi: 1 Dpth: 112 Lvs: 86 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 232 I: 0 Tm: 0.00 NLPi: 20 Dpth: 112 Lvs: 87 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 233 I: -1 Tm: 0.00 NLPi: 1 Dpth: 113 Lvs: 86 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 234 I: -1 Tm: 0.00 NLPi: 4 Dpth: 113 Lvs: 85 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 235 I: 0 Tm: 0.00 NLPi: 7 Dpth: 109 Lvs: 85 Obj: 6.98E-10 Gap: 2.00E+00
Iter: 236 I: 0 Tm: 0.00 NLPi: 5 Dpth: 110 Lvs: 86 Obj: 4.04E-06 Gap: 2.00E+00
Iter: 237 I: 0 Tm: 0.00 NLPi: 5 Dpth: 111 Lvs: 86 Obj: 4.04E-06 Gap: 2.00E+00
Iter: 238 I: 0 Tm: 0.00 NLPi: 9 Dpth: 112 Lvs: 87 Obj: 5.75E-08 Gap: 2.00E+00
Iter: 239 I: 0 Tm: 0.00 NLPi: 3 Dpth: 113 Lvs: 86 Obj: 3.99E+05 Gap: 2.00E+00
Iter: 240 I: 0 Tm: 0.00 NLPi: 15 Dpth: 113 Lvs: 88 Obj: 3.91E-05 Gap: 2.00E+00
Iter: 241 I: 0 Tm: 0.00 NLPi: 6 Dpth: 114 Lvs: 89 Obj: 1.01E-07 Gap: 2.00E+00
Iter: 242 I: 0 Tm: 0.00 NLPi: 10 Dpth: 115 Lvs: 91 Obj: 4.85E-06 Gap: 2.00E+00
Iter: 243 I: -1 Tm: 0.00 NLPi: 7 Dpth: 116 Lvs: 90 Obj: 4.85E-06 Gap: 2.00E+00
Iter: 244 I: 0 Tm: 0.00 NLPi: 3 Dpth: 116 Lvs: 89 Obj: 2.65E+04 Gap: 2.00E+00
Iter: 245 I: 0 Tm: 0.00 NLPi: 7 Dpth: 116 Lvs: 91 Obj: 5.90E-06 Gap: 2.00E+00
Iter: 246 I: 0 Tm: 0.00 NLPi: 4 Dpth: 117 Lvs: 92 Obj: 3.70E-06 Gap: 2.00E+00
Iter: 247 I: -1 Tm: 0.00 NLPi: 6 Dpth: 118 Lvs: 91 Obj: 3.70E-06 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 248 I: 0 Tm: 0.00 NLPi: 3 Dpth: 118 Lvs: 90 Obj: 1.96E+04 Gap: 2.00E+00
Iter: 249 I: 0 Tm: 0.00 NLPi: 4 Dpth: 117 Lvs: 91 Obj: 4.63E-06 Gap: 2.00E+00
Iter: 250 I: -1 Tm: 0.00 NLPi: 6 Dpth: 118 Lvs: 90 Obj: 4.63E-06 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 251 I: 0 Tm: 0.00 NLPi: 3 Dpth: 118 Lvs: 89 Obj: 1.96E+04 Gap: 2.00E+00
Iter: 252 I: 0 Tm: 0.00 NLPi: 7 Dpth: 117 Lvs: 90 Obj: 8.15E-09 Gap: 2.00E+00
Iter: 253 I: 0 Tm: 0.00 NLPi: 4 Dpth: 118 Lvs: 90 Obj: 4.98E-06 Gap: 2.00E+00
Iter: 254 I: 0 Tm: 0.00 NLPi: 7 Dpth: 119 Lvs: 91 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 255 I: 0 Tm: 0.00 NLPi: 4 Dpth: 120 Lvs: 90 Obj: 4.15E-06 Gap: 2.00E+00
Iter: 256 I: 0 Tm: 0.00 NLPi: 9 Dpth: 120 Lvs: 92 Obj: 3.17E-08 Gap: 2.00E+00
Iter: 257 I: -9 Tm: 0.37 NLPi: 5001 Dpth: 121 Lvs: 91 Obj: 3.17E-08 Gap: 2.00E+00
Iter: 258 I: 0 Tm: 0.00 NLPi: 15 Dpth: 121 Lvs: 93 Obj: 2.67E-05 Gap: 2.00E+00
Iter: 259 I: -1 Tm: 0.00 NLPi: 3 Dpth: 122 Lvs: 92 Obj: 2.67E-05 Gap: 2.00E+00
Iter: 260 I: 0 Tm: 0.00 NLPi: 3 Dpth: 122 Lvs: 91 Obj: 1.16E+04 Gap: 2.00E+00
Iter: 261 I: 0 Tm: 0.00 NLPi: 8 Dpth: 122 Lvs: 93 Obj: 8.93E-07 Gap: 2.00E+00
Iter: 262 I: -1 Tm: 0.00 NLPi: 7 Dpth: 123 Lvs: 92 Obj: 8.93E-07 Gap: 2.00E+00
Iter: 263 I: -1 Tm: 0.00 NLPi: 7 Dpth: 123 Lvs: 91 Obj: 8.93E-07 Gap: 2.00E+00
Iter: 264 I: 0 Tm: 0.00 NLPi: 4 Dpth: 123 Lvs: 92 Obj: 7.31E-05 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 265 I: 0 Tm: 0.00 NLPi: 1 Dpth: 124 Lvs: 91 Obj: 1.24E+04 Gap: 2.00E+00
Iter: 266 I: 0 Tm: 0.00 NLPi: 8 Dpth: 124 Lvs: 92 Obj: 2.56E-06 Gap: 2.00E+00
Iter: 267 I: 0 Tm: 0.00 NLPi: 6 Dpth: 125 Lvs: 93 Obj: 5.53E-07 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 268 I: 0 Tm: 0.00 NLPi: 3 Dpth: 126 Lvs: 92 Obj: 1.96E+04 Gap: 2.00E+00
Iter: 269 I: 0 Tm: 0.00 NLPi: 6 Dpth: 126 Lvs: 93 Obj: 9.42E-07 Gap: 2.00E+00
Iter: 270 I: 0 Tm: 0.00 NLPi: 7 Dpth: 127 Lvs: 95 Obj: 3.45E-07 Gap: 2.00E+00
Iter: 271 I: 0 Tm: 0.00 NLPi: 7 Dpth: 128 Lvs: 96 Obj: 3.67E-07 Gap: 2.00E+00
Iter: 272 I: 0 Tm: 0.00 NLPi: 3 Dpth: 129 Lvs: 95 Obj: 4.95E+05 Gap: 2.00E+00
Iter: 273 I: 0 Tm: 0.00 NLPi: 7 Dpth: 129 Lvs: 96 Obj: 3.73E-07 Gap: 2.00E+00
Iter: 274 I: 0 Tm: 0.00 NLPi: 7 Dpth: 130 Lvs: 98 Obj: 6.12E-07 Gap: 2.00E+00
Iter: 275 I: -1 Tm: 0.00 NLPi: 6 Dpth: 131 Lvs: 97 Obj: 6.12E-07 Gap: 2.00E+00
Iter: 276 I: 0 Tm: 0.00 NLPi: 7 Dpth: 131 Lvs: 99 Obj: 6.11E-07 Gap: 2.00E+00
Iter: 277 I: -1 Tm: 0.00 NLPi: 5 Dpth: 132 Lvs: 98 Obj: 6.11E-07 Gap: 2.00E+00
Iter: 278 I: 0 Tm: 0.00 NLPi: 3 Dpth: 132 Lvs: 97 Obj: 2.65E+04 Gap: 2.00E+00
Iter: 279 I: 0 Tm: 0.00 NLPi: 5 Dpth: 132 Lvs: 99 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 280 I: -1 Tm: 0.00 NLPi: 5 Dpth: 133 Lvs: 98 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 281 I: -1 Tm: 0.00 NLPi: 5 Dpth: 133 Lvs: 97 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 282 I: 0 Tm: 0.00 NLPi: 8 Dpth: 133 Lvs: 98 Obj: 9.47E-07 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 283 I: 0 Tm: 0.00 NLPi: 1 Dpth: 134 Lvs: 97 Obj: 1.96E+04 Gap: 2.00E+00
Iter: 284 I: 0 Tm: 0.00 NLPi: 3 Dpth: 134 Lvs: 98 Obj: 8.70E-07 Gap: 2.00E+00
Iter: 285 I: 0 Tm: 0.00 NLPi: 6 Dpth: 135 Lvs: 100 Obj: 4.11E-06 Gap: 2.00E+00
Iter: 286 I: 0 Tm: 0.00 NLPi: 6 Dpth: 136 Lvs: 100 Obj: 3.94E-06 Gap: 2.00E+00
Iter: 287 I: 0 Tm: 0.00 NLPi: 3 Dpth: 137 Lvs: 101 Obj: 1.02E-07 Gap: 2.00E+00
Iter: 288 I: -1 Tm: 0.00 NLPi: 5 Dpth: 138 Lvs: 100 Obj: 1.02E-07 Gap: 2.00E+00
Iter: 289 I: 0 Tm: 0.00 NLPi: 4 Dpth: 138 Lvs: 100 Obj: 9.46E-07 Gap: 2.00E+00
Iter: 290 I: 0 Tm: 0.00 NLPi: 8 Dpth: 139 Lvs: 101 Obj: 9.47E-07 Gap: 2.00E+00
Iter: 291 I: 0 Tm: 0.00 NLPi: 4 Dpth: 140 Lvs: 101 Obj: 9.21E-07 Gap: 2.00E+00
Iter: 292 I: 0 Tm: 0.00 NLPi: 4 Dpth: 141 Lvs: 102 Obj: 7.92E-07 Gap: 2.00E+00
Iter: 293 I: 0 Tm: 0.00 NLPi: 4 Dpth: 142 Lvs: 103 Obj: 5.21E-07 Gap: 2.00E+00
Iter: 294 I: 0 Tm: 0.00 NLPi: 3 Dpth: 143 Lvs: 102 Obj: 3.54E+05 Gap: 2.00E+00
Iter: 295 I: 0 Tm: 0.00 NLPi: 4 Dpth: 143 Lvs: 103 Obj: 5.21E-07 Gap: 2.00E+00
Iter: 296 I: 0 Tm: 0.00 NLPi: 4 Dpth: 144 Lvs: 104 Obj: 7.05E-07 Gap: 2.00E+00
Iter: 297 I: 0 Tm: 0.00 NLPi: 4 Dpth: 145 Lvs: 105 Obj: 7.06E-07 Gap: 2.00E+00
Iter: 298 I: 0 Tm: 0.00 NLPi: 3 Dpth: 146 Lvs: 106 Obj: 9.45E-07 Gap: 2.00E+00
Iter: 299 I: 0 Tm: 0.00 NLPi: 6 Dpth: 147 Lvs: 107 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 300 I: 0 Tm: 0.00 NLPi: 3 Dpth: 148 Lvs: 106 Obj: 1.16E+04 Gap: 2.00E+00
Iter: 301 I: 0 Tm: 0.00 NLPi: 6 Dpth: 148 Lvs: 107 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 302 I: 0 Tm: 0.00 NLPi: 3 Dpth: 149 Lvs: 106 Obj: 3.99E+05 Gap: 2.00E+00
Iter: 303 I: 0 Tm: 0.00 NLPi: 6 Dpth: 149 Lvs: 107 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 304 I: 0 Tm: 0.00 NLPi: 4 Dpth: 150 Lvs: 108 Obj: 9.32E-07 Gap: 2.00E+00
Iter: 305 I: 0 Tm: 0.00 NLPi: 4 Dpth: 151 Lvs: 110 Obj: 6.90E-07 Gap: 2.00E+00
Iter: 306 I: 0 Tm: 0.00 NLPi: 4 Dpth: 152 Lvs: 111 Obj: 9.32E-07 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 307 I: 0 Tm: 0.00 NLPi: 3 Dpth: 153 Lvs: 110 Obj: 2.50E+04 Gap: 2.00E+00
Iter: 308 I: 0 Tm: 0.00 NLPi: 19 Dpth: 153 Lvs: 112 Obj: 6.17E-07 Gap: 2.00E+00
Iter: 309 I: 0 Tm: 0.00 NLPi: 17 Dpth: 154 Lvs: 113 Obj: 3.06E-06 Gap: 2.00E+00
Iter: 310 I: 0 Tm: 0.00 NLPi: 4 Dpth: 155 Lvs: 114 Obj: 6.90E-07 Gap: 2.00E+00
Iter: 311 I: 0 Tm: 0.00 NLPi: 3 Dpth: 156 Lvs: 115 Obj: 9.47E-07 Gap: 2.00E+00
Iter: 312 I: 0 Tm: 0.00 NLPi: 6 Dpth: 157 Lvs: 116 Obj: 9.37E-07 Gap: 2.00E+00
Iter: 313 I: 0 Tm: 0.00 NLPi: 14 Dpth: 158 Lvs: 117 Obj: 7.77E-07 Gap: 2.00E+00
Iter: 314 I: 0 Tm: 0.00 NLPi: 3 Dpth: 159 Lvs: 117 Obj: 6.38E-07 Gap: 2.00E+00
Iter: 315 I: -1 Tm: 0.00 NLPi: 5 Dpth: 160 Lvs: 116 Obj: 6.38E-07 Gap: 2.00E+00
Iter: 316 I: 0 Tm: 0.00 NLPi: 3 Dpth: 159 Lvs: 116 Obj: 9.42E-07 Gap: 2.00E+00
Iter: 317 I: 0 Tm: 0.00 NLPi: 4 Dpth: 160 Lvs: 117 Obj: 8.74E-07 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 318 I: 0 Tm: 0.00 NLPi: 3 Dpth: 161 Lvs: 116 Obj: 1.07E+04 Gap: 2.00E+00
Iter: 319 I: 0 Tm: 0.00 NLPi: 3 Dpth: 161 Lvs: 117 Obj: 8.43E-07 Gap: 2.00E+00
Iter: 320 I: 0 Tm: 0.00 NLPi: 6 Dpth: 162 Lvs: 119 Obj: 9.40E-07 Gap: 2.00E+00
Iter: 321 I: 0 Tm: 0.00 NLPi: 7 Dpth: 163 Lvs: 119 Obj: 7.00E-07 Gap: 2.00E+00
Iter: 322 I: 0 Tm: 0.00 NLPi: 3 Dpth: 164 Lvs: 120 Obj: 9.38E-07 Gap: 2.00E+00
Iter: 323 I: 0 Tm: 0.00 NLPi: 7 Dpth: 165 Lvs: 122 Obj: 5.80E-07 Gap: 2.00E+00
Iter: 324 I: 0 Tm: 0.00 NLPi: 4 Dpth: 166 Lvs: 123 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 325 I: 0 Tm: 0.00 NLPi: 7 Dpth: 167 Lvs: 124 Obj: 9.40E-07 Gap: 2.00E+00
Iter: 326 I: 0 Tm: 0.00 NLPi: 4 Dpth: 168 Lvs: 123 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 327 I: 0 Tm: 0.00 NLPi: 4 Dpth: 168 Lvs: 122 Obj: 2.70E+05 Gap: 2.00E+00
Iter: 328 I: 0 Tm: 0.00 NLPi: 7 Dpth: 167 Lvs: 122 Obj: 3.52E-05 Gap: 2.00E+00
Iter: 329 I: 0 Tm: 0.00 NLPi: 4 Dpth: 168 Lvs: 123 Obj: 9.44E-07 Gap: 2.00E+00
Iter: 330 I: 0 Tm: 0.00 NLPi: 7 Dpth: 169 Lvs: 125 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 331 I: 0 Tm: 0.00 NLPi: 7 Dpth: 170 Lvs: 125 Obj: 4.64E-07 Gap: 2.00E+00
Iter: 332 I: 0 Tm: 0.00 NLPi: 7 Dpth: 171 Lvs: 127 Obj: 5.70E-07 Gap: 2.00E+00
Iter: 333 I: 0 Tm: 0.00 NLPi: 3 Dpth: 172 Lvs: 127 Obj: 4.37E-07 Gap: 2.00E+00
Iter: 334 I: 0 Tm: 0.00 NLPi: 7 Dpth: 173 Lvs: 127 Obj: 5.80E-07 Gap: 2.00E+00
Iter: 335 I: 0 Tm: 0.00 NLPi: 3 Dpth: 174 Lvs: 126 Obj: 1.35E+06 Gap: 2.00E+00
Iter: 336 I: 0 Tm: 0.00 NLPi: 3 Dpth: 172 Lvs: 125 Obj: 5.25E-07 Gap: 2.00E+00
Iter: 337 I: 0 Tm: 0.00 NLPi: 7 Dpth: 172 Lvs: 127 Obj: 3.86E-07 Gap: 2.00E+00
Iter: 338 I: -1 Tm: 0.00 NLPi: 4 Dpth: 173 Lvs: 126 Obj: 3.86E-07 Gap: 2.00E+00
Iter: 339 I: 0 Tm: 0.00 NLPi: 11 Dpth: 173 Lvs: 128 Obj: 3.90E-07 Gap: 2.00E+00
Iter: 340 I: -1 Tm: 0.00 NLPi: 1 Dpth: 174 Lvs: 127 Obj: 3.90E-07 Gap: 2.00E+00
Iter: 341 I: 0 Tm: 0.00 NLPi: 17 Dpth: 174 Lvs: 129 Obj: 9.47E-07 Gap: 2.00E+00
Iter: 342 I: -1 Tm: 0.00 NLPi: 6 Dpth: 175 Lvs: 128 Obj: 9.47E-07 Gap: 2.00E+00
Iter: 343 I: 0 Tm: 0.00 NLPi: 3 Dpth: 175 Lvs: 127 Obj: 2.70E+05 Gap: 2.00E+00
Iter: 344 I: 0 Tm: 0.00 NLPi: 6 Dpth: 175 Lvs: 129 Obj: 2.73E-07 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 345 I: 0 Tm: 0.00 NLPi: 3 Dpth: 176 Lvs: 128 Obj: 4.54E+04 Gap: 2.00E+00
Iter: 346 I: 0 Tm: 0.00 NLPi: 7 Dpth: 176 Lvs: 130 Obj: 9.29E-07 Gap: 2.00E+00
Iter: 347 I: 0 Tm: 0.00 NLPi: 10 Dpth: 177 Lvs: 130 Obj: 5.63E-07 Gap: 2.00E+00
Iter: 348 I: 0 Tm: 0.00 NLPi: 10 Dpth: 178 Lvs: 131 Obj: 6.41E-07 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 349 I: 0 Tm: 0.00 NLPi: 3 Dpth: 179 Lvs: 130 Obj: 6.40E+04 Gap: 2.00E+00
Iter: 350 I: 0 Tm: 0.00 NLPi: 7 Dpth: 179 Lvs: 132 Obj: 9.33E-07 Gap: 2.00E+00
Iter: 351 I: 0 Tm: 0.00 NLPi: 10 Dpth: 180 Lvs: 132 Obj: 5.63E-07 Gap: 2.00E+00
Iter: 352 I: 0 Tm: 0.00 NLPi: 7 Dpth: 181 Lvs: 134 Obj: 3.73E-06 Gap: 2.00E+00
Iter: 353 I: 0 Tm: 0.00 NLPi: 3 Dpth: 182 Lvs: 133 Obj: 6.29E-07 Gap: 2.00E+00
Iter: 354 I: 0 Tm: 0.00 NLPi: 6 Dpth: 182 Lvs: 135 Obj: 9.47E-07 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 355 I: 0 Tm: 0.00 NLPi: 3 Dpth: 183 Lvs: 134 Obj: 1.71E+05 Gap: 2.00E+00
Iter: 356 I: 0 Tm: 0.00 NLPi: 3 Dpth: 183 Lvs: 133 Obj: 7.73E-07 Gap: 2.00E+00
Iter: 357 I: 0 Tm: 0.00 NLPi: 6 Dpth: 183 Lvs: 133 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 358 I: 0 Tm: 0.00 NLPi: 4 Dpth: 184 Lvs: 134 Obj: 9.99E-07 Gap: 2.00E+00
Iter: 359 I: 0 Tm: 0.00 NLPi: 6 Dpth: 185 Lvs: 135 Obj: 6.40E-07 Gap: 2.00E+00
Iter: 360 I: 0 Tm: 0.00 NLPi: 8 Dpth: 186 Lvs: 136 Obj: 7.38E-07 Gap: 2.00E+00
Iter: 361 I: 0 Tm: 0.00 NLPi: 3 Dpth: 187 Lvs: 136 Obj: 3.36E-07 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 362 I: 0 Tm: 0.00 NLPi: 3 Dpth: 188 Lvs: 135 Obj: 1.96E+04 Gap: 2.00E+00
Iter: 363 I: 0 Tm: 0.00 NLPi: 9 Dpth: 187 Lvs: 136 Obj: 6.95E-07 Gap: 2.00E+00
Iter: 364 I: 0 Tm: 0.00 NLPi: 3 Dpth: 188 Lvs: 137 Obj: 3.36E-07 Gap: 2.00E+00
Iter: 365 I: 0 Tm: 0.00 NLPi: 6 Dpth: 189 Lvs: 138 Obj: 9.31E-07 Gap: 2.00E+00
Iter: 366 I: 0 Tm: 0.00 NLPi: 3 Dpth: 190 Lvs: 137 Obj: 2.70E+05 Gap: 2.00E+00
Iter: 367 I: 0 Tm: 0.00 NLPi: 6 Dpth: 190 Lvs: 138 Obj: 9.29E-07 Gap: 2.00E+00
Iter: 368 I: 0 Tm: 0.00 NLPi: 4 Dpth: 191 Lvs: 139 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 369 I: 0 Tm: 0.00 NLPi: 3 Dpth: 192 Lvs: 140 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 370 I: 0 Tm: 0.00 NLPi: 6 Dpth: 193 Lvs: 141 Obj: 2.37E-07 Gap: 2.00E+00
Iter: 371 I: 0 Tm: 0.00 NLPi: 3 Dpth: 194 Lvs: 140 Obj: 3.11E+05 Gap: 2.00E+00
Iter: 372 I: 0 Tm: 0.00 NLPi: 6 Dpth: 194 Lvs: 142 Obj: 9.48E-08 Gap: 2.00E+00
Iter: 373 I: 0 Tm: 0.00 NLPi: 4 Dpth: 195 Lvs: 143 Obj: 5.21E-07 Gap: 2.00E+00
Iter: 374 I: 0 Tm: 0.00 NLPi: 7 Dpth: 196 Lvs: 145 Obj: 9.35E-07 Gap: 2.00E+00
Iter: 375 I: -1 Tm: 0.00 NLPi: 5 Dpth: 197 Lvs: 144 Obj: 9.35E-07 Gap: 2.00E+00
Iter: 376 I: 0 Tm: 0.00 NLPi: 7 Dpth: 197 Lvs: 146 Obj: 3.30E-07 Gap: 2.00E+00
Iter: 377 I: -1 Tm: 0.00 NLPi: 5 Dpth: 198 Lvs: 145 Obj: 3.30E-07 Gap: 2.00E+00
Iter: 378 I: 0 Tm: 0.00 NLPi: 3 Dpth: 198 Lvs: 144 Obj: 2.65E+04 Gap: 2.00E+00
Iter: 379 I: 0 Tm: 0.00 NLPi: 5 Dpth: 198 Lvs: 144 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 380 I: 0 Tm: 0.00 NLPi: 4 Dpth: 199 Lvs: 145 Obj: 4.34E-07 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 381 I: 0 Tm: 0.00 NLPi: 1 Dpth: 200 Lvs: 144 Obj: 1.96E+04 Gap: 2.00E+00
Iter: 382 I: 0 Tm: 0.00 NLPi: 3 Dpth: 200 Lvs: 145 Obj: 8.70E-07 Gap: 2.00E+00
Iter: 383 I: 0 Tm: 0.00 NLPi: 6 Dpth: 201 Lvs: 147 Obj: 4.11E-06 Gap: 2.00E+00
Iter: 384 I: 0 Tm: 0.00 NLPi: 6 Dpth: 202 Lvs: 147 Obj: 3.94E-06 Gap: 2.00E+00
Iter: 385 I: 0 Tm: 0.00 NLPi: 3 Dpth: 203 Lvs: 148 Obj: 1.02E-07 Gap: 2.00E+00
Iter: 386 I: -1 Tm: 0.00 NLPi: 5 Dpth: 204 Lvs: 147 Obj: 1.02E-07 Gap: 2.00E+00
Iter: 387 I: 0 Tm: 0.00 NLPi: 4 Dpth: 204 Lvs: 147 Obj: 9.46E-07 Gap: 2.00E+00
Iter: 388 I: 0 Tm: 0.00 NLPi: 7 Dpth: 205 Lvs: 148 Obj: 7.92E-07 Gap: 2.00E+00
Iter: 389 I: 0 Tm: 0.00 NLPi: 4 Dpth: 206 Lvs: 149 Obj: 9.46E-07 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 390 I: 0 Tm: 0.00 NLPi: 3 Dpth: 207 Lvs: 148 Obj: 1.96E+04 Gap: 2.00E+00
Iter: 391 I: 0 Tm: 0.00 NLPi: 4 Dpth: 207 Lvs: 149 Obj: 1.43E-07 Gap: 2.00E+00
Iter: 392 I: 0 Tm: 0.00 NLPi: 7 Dpth: 208 Lvs: 150 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 393 I: 0 Tm: 0.00 NLPi: 8 Dpth: 209 Lvs: 152 Obj: 1.72E-06 Gap: 2.00E+00
Iter: 394 I: 0 Tm: 0.00 NLPi: 7 Dpth: 210 Lvs: 153 Obj: 4.15E-07 Gap: 2.00E+00
Iter: 395 I: 0 Tm: 0.00 NLPi: 4 Dpth: 211 Lvs: 154 Obj: 9.46E-07 Gap: 2.00E+00
Iter: 396 I: 0 Tm: 0.00 NLPi: 3 Dpth: 212 Lvs: 154 Obj: 9.47E-07 Gap: 2.00E+00
Iter: 397 I: 0 Tm: 0.00 NLPi: 6 Dpth: 213 Lvs: 155 Obj: 9.03E-07 Gap: 2.00E+00
Iter: 398 I: 0 Tm: 0.00 NLPi: 9 Dpth: 214 Lvs: 157 Obj: 9.44E-07 Gap: 2.00E+00
Iter: 399 I: -1 Tm: 0.00 NLPi: 3 Dpth: 215 Lvs: 156 Obj: 9.44E-07 Gap: 2.00E+00
Iter: 400 I: 0 Tm: 0.00 NLPi: 3 Dpth: 215 Lvs: 155 Obj: 1.16E+04 Gap: 2.00E+00
Iter: 401 I: 0 Tm: 0.00 NLPi: 11 Dpth: 215 Lvs: 157 Obj: 6.42E-07 Gap: 2.00E+00
Iter: 402 I: 0 Tm: 0.00 NLPi: 9 Dpth: 216 Lvs: 158 Obj: 1.36E-06 Gap: 2.00E+00
Iter: 403 I: 0 Tm: 0.00 NLPi: 11 Dpth: 217 Lvs: 160 Obj: 3.24E-08 Gap: 2.00E+00
Iter: 404 I: 0 Tm: 0.00 NLPi: 5 Dpth: 218 Lvs: 161 Obj: 9.46E-07 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 405 I: 0 Tm: 0.00 NLPi: 3 Dpth: 219 Lvs: 160 Obj: 6.40E+04 Gap: 2.00E+00
Iter: 406 I: 0 Tm: 0.00 NLPi: 4 Dpth: 219 Lvs: 161 Obj: 9.13E-07 Gap: 2.00E+00
Iter: 407 I: 0 Tm: 0.00 NLPi: 7 Dpth: 220 Lvs: 162 Obj: 3.94E-07 Gap: 2.00E+00
Iter: 408 I: 0 Tm: 0.00 NLPi: 3 Dpth: 221 Lvs: 161 Obj: 7.85E+05 Gap: 2.00E+00
Iter: 409 I: 0 Tm: 0.00 NLPi: 6 Dpth: 221 Lvs: 162 Obj: 9.47E-07 Gap: 2.00E+00
Iter: 410 I: 0 Tm: 0.00 NLPi: 4 Dpth: 222 Lvs: 163 Obj: 9.19E-07 Gap: 2.00E+00
Iter: 411 I: 0 Tm: 0.00 NLPi: 3 Dpth: 223 Lvs: 164 Obj: 9.34E-07 Gap: 2.00E+00
Iter: 412 I: 0 Tm: 0.00 NLPi: 6 Dpth: 224 Lvs: 165 Obj: 9.37E-07 Gap: 2.00E+00
Iter: 413 I: 0 Tm: 0.00 NLPi: 9 Dpth: 225 Lvs: 167 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 414 I: 0 Tm: 0.00 NLPi: 5 Dpth: 226 Lvs: 168 Obj: 6.94E-08 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 415 I: 0 Tm: 0.00 NLPi: 3 Dpth: 227 Lvs: 167 Obj: 1.11E+05 Gap: 2.00E+00
Iter: 416 I: 0 Tm: 0.00 NLPi: 4 Dpth: 227 Lvs: 168 Obj: 9.37E-07 Gap: 2.00E+00
Iter: 417 I: 0 Tm: 0.00 NLPi: 7 Dpth: 228 Lvs: 168 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 418 I: 0 Tm: 0.00 NLPi: 3 Dpth: 229 Lvs: 167 Obj: 8.54E+05 Gap: 2.00E+00
Iter: 419 I: 0 Tm: 0.00 NLPi: 4 Dpth: 228 Lvs: 168 Obj: 9.19E-07 Gap: 2.00E+00
--Integer Solution: 2.86E+02 Lowest Leaf: 0.00E+00 Gap: 2.00E+00
Iter: 420 I: 0 Tm: 0.00 NLPi: 3 Dpth: 229 Lvs: 167 Obj: 2.70E+04 Gap: 2.00E+00
Iter: 421 I: 0 Tm: 0.00 NLPi: 4 Dpth: 229 Lvs: 168 Obj: 4.45E-06 Gap: 2.00E+00
Iter: 422 I: 0 Tm: 0.00 NLPi: 7 Dpth: 230 Lvs: 169 Obj: 9.47E-07 Gap: 2.00E+00
Iter: 423 I: 0 Tm: 0.00 NLPi: 3 Dpth: 231 Lvs: 168 Obj: 8.54E+05 Gap: 2.00E+00
Iter: 424 I: 0 Tm: 0.00 NLPi: 6 Dpth: 231 Lvs: 170 Obj: 1.90E-07 Gap: 2.00E+00
Iter: 425 I: 0 Tm: 0.00 NLPi: 3 Dpth: 232 Lvs: 171 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 426 I: 0 Tm: 0.00 NLPi: 6 Dpth: 233 Lvs: 172 Obj: 2.33E-10 Gap: 2.00E+00
Iter: 427 I: 0 Tm: 0.00 NLPi: 3 Dpth: 234 Lvs: 173 Obj: 6.54E-07 Gap: 2.00E+00
Iter: 428 I: 0 Tm: 0.00 NLPi: 6 Dpth: 235 Lvs: 174 Obj: 8.39E-07 Gap: 2.00E+00
Iter: 429 I: 0 Tm: 0.00 NLPi: 3 Dpth: 236 Lvs: 173 Obj: 1.05E+05 Gap: 2.00E+00
Iter: 430 I: 0 Tm: 0.00 NLPi: 6 Dpth: 236 Lvs: 175 Obj: 8.22E-07 Gap: 2.00E+00
Iter: 431 I: 0 Tm: 0.00 NLPi: 7 Dpth: 237 Lvs: 175 Obj: 8.49E-07 Gap: 2.00E+00
Iter: 432 I: 0 Tm: 0.00 NLPi: 23 Dpth: 238 Lvs: 176 Obj: 5.59E-06 Gap: 2.00E+00
Iter: 433 I: -1 Tm: 0.00 NLPi: 4 Dpth: 239 Lvs: 175 Obj: 5.59E-06 Gap: 2.00E+00
Iter: 434 I: 0 Tm: 0.00 NLPi: 10 Dpth: 239 Lvs: 177 Obj: 9.47E-07 Gap: 2.00E+00
Iter: 435 I: -1 Tm: 0.00 NLPi: 4 Dpth: 240 Lvs: 176 Obj: 9.47E-07 Gap: 2.00E+00
Iter: 436 I: -1 Tm: 0.00 NLPi: 7 Dpth: 240 Lvs: 175 Obj: 9.47E-07 Gap: 2.00E+00
Iter: 437 I: 0 Tm: 0.00 NLPi: 13 Dpth: 240 Lvs: 177 Obj: 1.16E-04 Gap: 2.00E+00
Iter: 438 I: 0 Tm: 0.00 NLPi: 6 Dpth: 241 Lvs: 179 Obj: 9.36E-07 Gap: 2.00E+00
Iter: 439 I: 0 Tm: 0.00 NLPi: 4 Dpth: 242 Lvs: 179 Obj: 9.46E-07 Gap: 2.00E+00
Iter: 440 I: 0 Tm: 0.00 NLPi: 4 Dpth: 243 Lvs: 180 Obj: 1.03E-05 Gap: 2.00E+00
Iter: 441 I: 0 Tm: 0.00 NLPi: 7 Dpth: 244 Lvs: 181 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 442 I: 0 Tm: 0.00 NLPi: 3 Dpth: 245 Lvs: 182 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 443 I: 0 Tm: 0.00 NLPi: 6 Dpth: 246 Lvs: 183 Obj: 9.47E-07 Gap: 2.00E+00
Iter: 444 I: 0 Tm: 0.00 NLPi: 3 Dpth: 247 Lvs: 184 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 445 I: 0 Tm: 0.00 NLPi: 6 Dpth: 248 Lvs: 185 Obj: 3.95E-06 Gap: 2.00E+00
Iter: 446 I: 0 Tm: 0.00 NLPi: 3 Dpth: 249 Lvs: 186 Obj: 9.46E-07 Gap: 2.00E+00
Iter: 447 I: 0 Tm: 0.00 NLPi: 6 Dpth: 250 Lvs: 187 Obj: 0.00E+00 Gap: 2.00E+00
Iter: 448 I: 0 Tm: 0.00 NLPi: 3 Dpth: 251 Lvs: 188 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 449 I: 0 Tm: 0.00 NLPi: 6 Dpth: 252 Lvs: 189 Obj: 9.10E-07 Gap: 2.00E+00
Iter: 450 I: 0 Tm: 0.00 NLPi: 3 Dpth: 253 Lvs: 190 Obj: 9.47E-07 Gap: 2.00E+00
Iter: 451 I: 0 Tm: 0.00 NLPi: 6 Dpth: 254 Lvs: 191 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 452 I: 0 Tm: 0.00 NLPi: 3 Dpth: 255 Lvs: 192 Obj: 9.47E-07 Gap: 2.00E+00
Iter: 453 I: 0 Tm: 0.00 NLPi: 5 Dpth: 256 Lvs: 193 Obj: 4.09E-07 Gap: 2.00E+00
Iter: 454 I: 0 Tm: 0.00 NLPi: 3 Dpth: 257 Lvs: 194 Obj: 9.46E-07 Gap: 2.00E+00
Iter: 455 I: 0 Tm: 0.00 NLPi: 6 Dpth: 258 Lvs: 195 Obj: 1.19E-07 Gap: 2.00E+00
Iter: 456 I: 0 Tm: 0.00 NLPi: 3 Dpth: 259 Lvs: 196 Obj: 9.48E-07 Gap: 2.00E+00
Iter: 457 I: 0 Tm: 0.00 NLPi: 6 Dpth: 260 Lvs: 197 Obj: 9.29E-07 Gap: 2.00E+00
Iter: 458 I: 0 Tm: 0.00 NLPi: 3 Dpth: 261 Lvs: 198 Obj: 9.46E-07 Gap: 2.00E+00
Iter: 459 I: 0 Tm: 0.00 NLPi: 6 Dpth: 262 Lvs: 199 Obj: 9.48E-07 Gap: 2.00E+00
--Integer Solution: 9.41E-07 Lowest Leaf: 0.00E+00 Gap: 9.41E-07
Iter: 460 I: 0 Tm: 0.00 NLPi: 3 Dpth: 263 Lvs: 199 Obj: 9.41E-07 Gap: 9.41E-07
Successful solution
---------------------------------------------------
Solver : APOPT (v1.0)
Solution time : 1.59049999999115 sec
Objective : 0.000000000000000E+000
Successful solution
---------------------------------------------------
Results
div_select [33.0]
pll_num [-1.0]
pll_denom [1.0]
post_div_sel [4.0]
sai_prediv [5.0]
sai_div [25.0]
pll out [768000000.0], sai clk [1536000.0], goal clk 1536000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment