Research Article

Reverse Bridge Theorem under Constraint Partition

Algorithm 2

The solving procedure for finding CMd of Pd.
Procedure RBTH_DNLP (Pd,y,α̅,β̅)
    α0,β0;
    repeat
     increase  αi by δ  if (hi(y)0  and  αi<α̅i) for i=1,,m;
     increase  βj by δ if (gj(y)0  and  βj<β̅j) for j=1,,r;
     repeat
      perform descent of Ld(y,α,β) with respect to y;
     until a local minimum of Ld(y,α,β) is found;
    until a CMd of Pd is found or (αi>α̅i  for  all  hi(y)0  and  βj>β̅j  for  all  gj(y)0).
    return CMd if found;
end_procedure