stress-element.cc
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
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #include "examples/support.hh"
00039
00049 class StressElement : public Example {
00050 protected:
00052 static const int n = 15;
00054 static const int m = 90;
00056 static const int p[n];
00057
00059 IntVarArray x;
00060 public:
00062 StressElement(const Options&)
00063 : x(this,n,0,n-1) {
00064
00065 IntVarArgs s(n);
00066 for (int i=0; i<n; i++)
00067 s[i].init(this,0,m);
00068
00069 rel(this, s, IRT_LQ);
00070
00071 IntArgs e(n,p);
00072
00073 for (int i=0; i<n; i++)
00074 element(this, e, x[i], s[i]);
00075
00076 distinct(this, x);
00077 branch(this, x, INT_VAR_SIZE_MIN, INT_VAL_MIN);
00078 }
00079
00081 StressElement(bool share, StressElement& s) : Example(share,s) {
00082 x.update(this, share, s.x);
00083 }
00084
00086 virtual Space*
00087 copy(bool share) {
00088 return new StressElement(share,*this);
00089 }
00090
00092 virtual void
00093 print(std::ostream& os) {
00094 os << "\tx[" << n << "] = " << x << std::endl;
00095 }
00096 };
00097
00098 const int StressElement::p[15] = {16,35,90,42,88,6,40,42,64,48,46,5,90,29,70};
00099
00103 int
00104 main(int argc, char* argv[]) {
00105 Options opt("StressElement");
00106 opt.parse(argc,argv);
00107 Example::run<StressElement,DFS,Options>(opt);
00108 return 0;
00109 }
00110
00111
00112