Research Article

Reverse Bridge Theorem under Constraint Partition

Algorithm 4

The partitioning and resolving procedure for finding CMm of Pt.
Procedure RBTH_partition_resolve_mixed (Pt,z,α¯,β̅,γ̅,η̅)
  γ0,  η0;
  repeat
    increase γi by δ if (Hi(z)0  and  γi<γ̅i)  for i=1,,p;
    increase ηj by δ if (Gj(z)0  and  ηj<η̅j) for j=1,,q;
    for  t=0 to  N
     call RBTH_MINLP (Pt(t),z,α¯,β̅) to solve Pt(t).
    end for;
  until a CMm of Pt is found or (γi>γ̅i  for  all  Hi(z)0  and  ηj>η̅j  for  all  Gj(z)0).
  return CMm of Pt if found;
end_procedure