# MINLP written by GAMS Convert at 02/17/22 17:19:48
#
# Equation counts
#     Total        E        G        L        N        X        C        B
#         1        1        0        0        0        0        0        0
#
# Variable counts
#                  x        b        i      s1s      s2s       sc       si
#     Total     cont   binary  integer     sos1     sos2    scont     sint
#         6        2        0        4        0        0        0        0
# FX      0
#
# Nonzero counts
#     Total    const       NL
#         6        2        4
#
# Reformulation has removed 1 variable and 1 equation

from pyomo.environ import *

model = m = ConcreteModel()

m.i1 = Var(within=Integers, bounds=(12,60), initialize=12)
m.i2 = Var(within=Integers, bounds=(12,60), initialize=12)
m.i3 = Var(within=Integers, bounds=(12,60), initialize=12)
m.i4 = Var(within=Integers, bounds=(12,60), initialize=12)
m.x5 = Var(within=Reals, bounds=(0,None), initialize=0)
m.x6 = Var(within=Reals, bounds=(0,None), initialize=0)

m.obj = Objective(sense=minimize, expr= m.x5 + m.x6)

m.e1 = Constraint(expr= -1e+06 * m.i1 * m.i2 / (m.i3 * m.i4) - m.x5 + m.x6
    == -144279.32477276)
