Research Article

Reverse Bridge Theorem under Constraint Partition

Algorithm 1

The solving procedure for finding CMc of Pc.
Procedure RBTH_CNLP (Pc,x,α̅,β̅)
    α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 Lc(x,α,β) with respect to x;
     until a local minimum of Lc(x,α,β) is found;
    until a CMc of Pc is found or (αi>α̅i for all hi(x)0 and βj>β̅j for all gj(x)0).
    return CMc if found;
end_procedure