golomb-ruler.cpp
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 #include <gecode/driver.hh>
00035 #include <gecode/int.hh>
00036 #include <gecode/minimodel.hh>
00037
00038 #include <iomanip>
00039
00040 using namespace Gecode;
00041
00062 class GolombRuler : public IntMinimizeScript {
00063 protected:
00065 IntVarArray m;
00066 public:
00068 GolombRuler(const SizeOptions& opt)
00069 : IntMinimizeScript(opt),
00070 m(*this,opt.size(),0,
00071 (opt.size() < 31) ? (1 << (opt.size()-1))-1 : Int::Limits::max) {
00072
00073
00074 rel(*this, m[0], IRT_EQ, 0);
00075
00076
00077 rel(*this, m, IRT_LE);
00078
00079
00080 const int n = m.size();
00081 const int n_d = (n*n-n)/2;
00082
00083
00084 IntVarArgs d(n_d);
00085
00086
00087 for (int k=0, i=0; i<n-1; i++)
00088 for (int j=i+1; j<n; j++, k++)
00089
00090 rel(*this, d[k] = expr(*this, m[j]-m[i]),
00091 IRT_GQ, (j-i)*(j-i+1)/2);
00092
00093 distinct(*this, d, opt.ipl());
00094
00095
00096 if (n > 2)
00097 rel(*this, d[0], IRT_LE, d[n_d-1]);
00098
00099 branch(*this, m, INT_VAR_NONE(), INT_VAL_MIN());
00100 }
00101
00103 virtual IntVar cost(void) const {
00104 return m[m.size()-1];
00105 }
00106
00108 virtual void
00109 print(std::ostream& os) const {
00110 os << "\tm[" << m.size() << "] = " << m << std::endl;
00111 }
00112
00114 GolombRuler(GolombRuler& s)
00115 : IntMinimizeScript(s) {
00116 m.update(*this, s.m);
00117 }
00119 virtual Space*
00120 copy(void) {
00121 return new GolombRuler(*this);
00122 }
00123 };
00124
00128 int
00129 main(int argc, char* argv[]) {
00130 SizeOptions opt("GolombRuler");
00131 opt.solutions(0);
00132 opt.size(10);
00133 opt.ipl(IPL_BND);
00134 opt.parse(argc,argv);
00135 if (opt.size() > 0)
00136 IntMinimizeScript::run<GolombRuler,BAB,SizeOptions>(opt);
00137 return 0;
00138 }
00139
00140
00141