Questions about writing equations?

Hi, I would like to know how can I write an equation with two bounds ( L < eq < U ) without having to write a new equation

Hi,
such ranged equations need to be implemented by either writing two equations

L <= eq
eq <= U

or you could use an auxiliary variable with corresponding bounds

eq = aux
aux.lo = L
aux.up = U

I hope this helps!

Fred