Research Article

Reverse Bridge Theorem under Constraint Partition

Algorithm 3

The resolving procedure for finding CMm of Pm.
Procedure RBTH_MINLP (Pm,x,y,α̅,β̅)
    α0, β0;
    repeat
     increase  αi by δ  if (hi(x)0  and  αi<α̅i) for i=1,,m;
     increase  βj by δ if (gj(x)    0  and  βj<β̅j) for j=1,,r;
     repeat
      perform descent of Lm(x,y,α,β) with respect to  x for given  y;
     until a local minimum of Lm(x,y,α,β) with respect to  x is found;
     repeat
      perform descent of Lm(x,y,α,β) with respect to  y for given  x;
     until a local minimum of Lm(x,y,α,β) with respect to  y is found;
    until a CMm of Pm is found or (αi>α̅i  for all hi(x)0 and βj>β̅j for all gj(x)    0)
    return CMm if found;
end_procedure