1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
Jip J. Dekker 981be2067e Squashed 'software/gecode_on_replay/' content from commit 8051d92b9
git-subtree-dir: software/gecode_on_replay
git-subtree-split: 8051d92b9c89e49cccfbd1c201371580d7703ab4
2021-06-16 14:04:29 +10:00

200 lines
5.4 KiB
C++

/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
* Main authors:
* Christian Schulte <schulte@gecode.org>
*
* Copyright:
* Christian Schulte, 2004
*
* Bugfixes provided by:
* Olof Sivertsson <olsi0767@student.uu.se>
*
* This file is part of Gecode, the generic constraint
* development environment:
* http://www.gecode.org
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
#include <gecode/driver.hh>
#include <gecode/int.hh>
using namespace Gecode;
/**
* \brief %Options for %BIBD problems
*
*/
class BIBDOptions : public Options {
public:
int v, k, lambda; ///< Parameters to be given on command line
int b, r; ///< Derived parameters
/// Derive additional parameters
void derive(void) {
b = (v*(v-1)*lambda)/(k*(k-1));
r = (lambda*(v-1)) / (k-1);
}
/// Initialize options for example with name \a s
BIBDOptions(const char* s,
int v0, int k0, int lambda0)
: Options(s), v(v0), k(k0), lambda(lambda0) {
derive();
}
/// Parse options from arguments \a argv (number is \a argc)
void parse(int& argc, char* argv[]) {
Options::parse(argc,argv);
if (argc < 4)
return;
v = atoi(argv[1]);
k = atoi(argv[2]);
lambda = atoi(argv[3]);
derive();
}
/// Print help message
virtual void help(void) {
Options::help();
std::cerr << "\t(unsigned int) default: " << v << std::endl
<< "\t\tparameter v" << std::endl
<< "\t(unsigned int) default: " << k << std::endl
<< "\t\tparameter k" << std::endl
<< "\t(unsigned int) default: " << lambda << std::endl
<< "\t\tparameter lambda" << std::endl;
}
};
/**
* \brief %Example: Balanced incomplete block design (%BIBD)
*
* See problem 28 at http://www.csplib.org/.
*
* \ingroup Example
*
*/
class BIBD : public Script {
protected:
/// Options providing access to parameters
const BIBDOptions& opt;
/// Matrix of Boolean variables
BoolVarArray _p;
public:
/// Symmetry breaking variants
enum {
SYMMETRY_NONE, ///< No symmetry breaking
SYMMETRY_LEX, ///< Lex-constraints on rows/columns
SYMMETRY_LDSB ///< LDSB on rows/columns
};
/// Actual model
BIBD(const BIBDOptions& o)
: Script(o), opt(o), _p(*this,opt.v*opt.b,0,1) {
Matrix<BoolVarArray> p(_p,opt.b,opt.v);
// r ones per row
for (int i=0; i<opt.v; i++)
linear(*this, p.row(i), IRT_EQ, opt.r);
// k ones per column
for (int j=0; j<opt.b; j++)
linear(*this, p.col(j), IRT_EQ, opt.k);
// Exactly lambda ones in scalar product between two different rows
for (int i1=0; i1<opt.v; i1++)
for (int i2=i1+1; i2<opt.v; i2++) {
BoolVarArgs row(opt.b);
for (int j=0; j<opt.b; j++)
row[j] = expr(*this, p(j,i1) && p(j,i2));
linear(*this, row, IRT_EQ, opt.lambda);
}
if (opt.symmetry() == SYMMETRY_LDSB) {
Symmetries s;
s << rows_interchange(p);
s << columns_interchange(p);
branch(*this, _p, BOOL_VAR_NONE(), BOOL_VAL_MIN(), s);
} else {
if (opt.symmetry() == SYMMETRY_LEX) {
for (int i=1; i<opt.v; i++)
rel(*this, p.row(i-1), IRT_GQ, p.row(i));
for (int j=1; j<opt.b; j++)
rel(*this, p.col(j-1), IRT_GQ, p.col(j));
}
branch(*this, _p, BOOL_VAR_NONE(), BOOL_VAL_MIN());
}
}
/// Print solution
virtual void
print(std::ostream& os) const {
os << "\tBIBD("
<< opt.v << "," << opt.k << ","
<< opt.lambda << ")" << std::endl;
Matrix<BoolVarArray> p(_p,opt.b,opt.v);
for (int i = 0; i<opt.v; i++) {
os << "\t\t";
for (int j = 0; j<opt.b; j++)
os << p(j,i) << " ";
os << std::endl;
}
os << std::endl;
}
/// Constructor for cloning \a s
BIBD(BIBD& s)
: Script(s), opt(s.opt) {
_p.update(*this, s._p);
}
/// Copy during cloning
virtual Space*
copy(void) {
return new BIBD(*this);
}
};
/** \brief Main-function
* \relates BIBD
*/
int
main(int argc, char* argv[]) {
BIBDOptions opt("BIBD",7,3,60);
opt.symmetry(BIBD::SYMMETRY_LEX);
opt.symmetry(BIBD::SYMMETRY_NONE,"none");
opt.symmetry(BIBD::SYMMETRY_LEX,"lex");
opt.symmetry(BIBD::SYMMETRY_LDSB,"ldsb");
opt.parse(argc,argv);
/*
* Other interesting instances:
* BIBD(7,3,1), BIBD(6,3,2), BIBD(7,3,20), ...
*/
Script::run<BIBD,DFS,BIBDOptions>(opt);
return 0;
}
// STATISTICS: example-any