Re: [gecode-users] constraint between variables in different spaces

2008-05-21 Thread Christian Schulte
le. My question is: why would you like to do that? Cheers Christian -- Christian Schulte, www.ict.kth.se/~cschulte/ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mauricio Toro Sent: Wednesday, May 21, 2008 10:39 AM To: [EMAIL PROTECTED] Subject: [gecode-users] cons

Re: [gecode-users] constraint between variables in different spaces

2008-05-21 Thread Mauricio Toro
would be pretty tricky: who will take care of that propagator during > copying, for example. > > > > My question is: why would you like to do that? > > > > Cheers > > Christian > > > > -- > > Christian Schulte, www.ict.kth.se/~cschulte/ >

Re: [gecode-users] constraint between variables in different spaces

2008-05-21 Thread Christian Schulte
dnesday, May 21, 2008 10:39 AM To: [EMAIL PROTECTED] Subject: [gecode-users] constraint between variables in different spaces Hello all, I want to propagate a constraint between variables in different spaces. How can this be done? For example mySpace * a = new mySpace(); mySp

[gecode-users] constraint between variables in different spaces

2008-05-21 Thread Mauricio Toro
OTECTED] [mailto:[EMAIL PROTECTED] *On > Behalf Of *Mauricio Toro > *Sent:* Wednesday, May 21, 2008 10:39 AM > *To:* [EMAIL PROTECTED] > *Subject:* [gecode-users] constraint between variables in different spaces > > > > Hello all, > > I want to propagate a constrain

Re: [gecode-users] constraint between variables in different spaces

2008-05-21 Thread Christian Schulte
that? Cheers Christian -- Christian Schulte, www.ict.kth.se/~cschulte/ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mauricio Toro Sent: Wednesday, May 21, 2008 10:39 AM To: [EMAIL PROTECTED] Subject: [gecode-users] constraint between variables in different spaces

[gecode-users] constraint between variables in different spaces

2008-05-21 Thread Mauricio Toro
Hello all,I want to propagate a constraint between variables in different spaces. How can this be done? For example mySpace * a = new mySpace(); mySpace * b = new mySpace(); IntVar aa(a,1,10); IntVar bb(b,1,10); rel(a,aa,IRT_EQ,2); a->status(); rel(b,bb,IRT_EQ,aa); b->status(); std::cout << aa <<