Some person could  explain me, how work flopc++ with it MP_subset. For example I declare three set:<br><br>MP_set A(numA), B(numB), C(numC);<br><br>y then i declared the subset<br><br>MP_subset&lt;2&gt; ab(A,B), bc(B,C);<br>
<br>then insert elements:<br><br>ab.insert(12,780); &nbsp;&nbsp;ab.insert(30,780); &nbsp;&nbsp;&nbsp;ab.insert(41,782); &nbsp;&nbsp;&nbsp;. . .<br>bc.insert(780,170); &nbsp;&nbsp;&nbsp;bc.insert(780,140); &nbsp;&nbsp;&nbsp;bc.insert(782,154); &nbsp;&nbsp;&nbsp;. . .<br><br>then if i declare the variable binary
<br><br>MP_binary_variable Xac(A,C);<br><br>ie, flopcpp link the element of set A to the elements of&nbsp;the&nbsp;set C by means of set B ?? .. It is a error ?<br><br>Or maybe I have to declare<br><br>MP_subset&lt;2&gt; ac(A,C);<br>
and the insert :<br>ac.insert(12,170); ac.insert(30,140); &nbsp;ac.inset(41,154); &nbsp;&nbsp;&nbsp;...<br>So that I can use<br>&quot;MP_binary_variable Xac(A,C);&quot;<br><br>please request my answer.<br><br>Very Thanks<br>