Originally posted by: Valentin_J
hi,
Verry sorry to bother you as much.
but it says me that the operator is not available :
Opérateur non disponible pour <int,int,int> IN tuple<k:int,i:int,j:int>
To be honest I don't really get the point..
You are trying to cut S from sums ? Just include all x that are in S ?
Moreover, just to be sure, I want the intervale s. Am I right writing ?
tuple S {
int k;
int i;
int j;
}
{S} s0 = {<i,j,k> | i in N, j in N, k in K};
{S} s1 ={<0,j,k> | j in D, k in K};
{S} s2 ={<i,0,k> | i in N, k in K};
{S} s3 ={<i,2*n+1,k> | i in P, k in K};
{S} s4 ={<i,i,k> | i in N, k in K};
{S} s = s0 diff s1 diff s2 diff s3 diff s4;
#DecisionOptimization#OPLusingCPLEXOptimizer