I dont undestand about of the variable in FloppC++, For example my program is:<br><br>each vertice have: <br>   -A domain which to possess a set of frequencies ....................MP_subset&lt;2&gt; varD(I,D);&nbsp;&lt;------ <br>
          -A frequency pre-assign which to belong to domain...............MP_subset&lt;2&gt; varI(I,F); <br>   -A variable cost of modification of its frequency preassign.....MP_subset&lt;2&gt; varM(I,M);<br>---------------------------------------------------------------------------------------------
<br>      where:         &nbsp;&nbsp;&nbsp;I is the set of vertices  <br>                      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;D is the set of domains <br>                      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F is the set of frequency<br>                     &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;M is the set of weight to changed the freq pre-assign to vertice 
<br><br>but now i am interesting only in the &quot;MP_subset&lt;2&gt; varD(I,D)&quot;, because when i declared my constraint<br><br>     &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MP_variable_binary Xvf(I,F);&nbsp;&lt;-------------------&nbsp;&quot;HERE&nbsp;IS&nbsp;MY&nbsp;QUESTION&quot;  
<br>      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MP_constraint assignOneFreq( I );&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>     &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;assignOneFreq(v) = sum( F(f), Xvf(v,f) ) == 1;   // only frequency can be assign to vertice <br><br>i dont know if i am insert my data correctly because i insert  a domain with it frequencies( &quot;MP_subset&lt;2&gt; dom_i(D,F)&quot; &nbsp;) and the vertice with it domain( &quot;MP_subset&lt;2&gt; varD(I,D)&quot;&nbsp;) but i dont insert vertices with frequencies because i think that   the variable Xvf(I,F) link the vertice with its frequencies through of it domain ---&gt;ie, varD(I,D).... It&#39;s correct ??? 
<br><br>Some Suggestion?<br><br>Martin Grados.<br>Trujillo - Peru<br><br><br>