assign.icc
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 namespace Gecode { namespace Int { namespace Branch {
00023
00024 forceinline
00025 Assign::Assign(Space* home, bool share, Assign& b)
00026 : Branching(home,share,b), pos(b.pos) {
00027 x.update(home,share,b.x);
00028 }
00029 forceinline
00030 Assign::Assign(Space* home, ViewArray<IntView>& x1)
00031 : Branching(home), x(x1), pos(0) {}
00032
00033
00034 forceinline
00035 AssignMin::AssignMin(Space* home, bool share, AssignMin& b)
00036 : Assign(home,share,b) {}
00037 forceinline
00038 AssignMin::AssignMin(Space* home, ViewArray<IntView>& x)
00039 : Assign(home,x) {}
00040
00041 forceinline
00042 AssignMed::AssignMed(Space* home, bool share, AssignMed& b)
00043 : Assign(home,share,b) {}
00044 forceinline
00045 AssignMed::AssignMed(Space* home, ViewArray<IntView>& x)
00046 : Assign(home,x) {}
00047
00048
00049 forceinline
00050 AssignMax::AssignMax(Space* home, bool share, AssignMax& b)
00051 : Assign(home,share,b) {}
00052 forceinline
00053 AssignMax::AssignMax(Space* home, ViewArray<IntView>& x)
00054 : Assign(home,x) {}
00055
00056 }}}
00057
00058
00059