Re: Another LP model for TSP (by S. Gubin)




U¿ytkownik "Radoslaw Hofman" <radekh@xxxxxxxxx> napisa³ w wiadomo¶ci
news:ek26cj$5rl$1@xxxxxxxxxxxxxxxxxxxxxxx

BTW: have you ran my two tasks, I had sent you 16.11.2006?
I have to more instances for you. They are much larger so please provide
us only with overall cost:
I:
N=7*12=84;
int getWeight(int i, int j)
{
if ((i % 7==j % 7) return 1;
return 1000;
}

II:
N=10*12=120;
int getWeight(int i, int j)
{
if ((i % 10==j % 10) return 1;
return 1000;
}

Best regards,

Radek Hofman




.



Relevant Pages