git-subtree-dir: software/gecode_on_record git-subtree-split: 37ed9bda495ea87e63217c19a374b5a93bb0078e
176 lines
5.0 KiB
C++
176 lines
5.0 KiB
C++
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
|
/*
|
|
* Main authors:
|
|
* Christian Schulte <schulte@gecode.org>
|
|
*
|
|
* Copyright:
|
|
* Christian Schulte, 2017
|
|
*
|
|
* 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/flatzinc/branch.hh>
|
|
|
|
namespace Gecode { namespace FlatZinc {
|
|
|
|
void
|
|
PosIntChoice::archive(Archive& e) const {
|
|
Choice::archive(e);
|
|
e << _pos;
|
|
e << _val;
|
|
}
|
|
|
|
|
|
bool
|
|
IntBoolBrancherBase::status(const Space&) const {
|
|
if (start < x.size()) {
|
|
for (int i=start; i < x.size(); i++)
|
|
if (!x[i].assigned()) {
|
|
start = i;
|
|
return true;
|
|
}
|
|
start = x.size();
|
|
}
|
|
for (int i=start-x.size(); i < y.size(); i++)
|
|
if (!y[i].assigned()) {
|
|
start = x.size() + i;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
ExecStatus
|
|
IntBoolBrancherBase::commit(Space& home, const Choice& _c,
|
|
unsigned int b) {
|
|
const PosIntChoice& c
|
|
= static_cast<const PosIntChoice&>(_c);
|
|
int p=c.pos(); int n=c.val();
|
|
if (p < x.size()) {
|
|
return me_failed(xvsc->commit(home,b,x[p],p,n)) ?
|
|
ES_FAILED : ES_OK;
|
|
} else {
|
|
p -= x.size();
|
|
return me_failed(yvsc->commit(home,b,y[p],p,n)) ?
|
|
ES_FAILED : ES_OK;
|
|
}
|
|
}
|
|
|
|
NGL*
|
|
IntBoolBrancherBase::ngl(Space& home, const Choice& _c,
|
|
unsigned int b) const {
|
|
const PosIntChoice& c
|
|
= static_cast<const PosIntChoice&>(_c);
|
|
int p=c.pos(); int n=c.val();
|
|
if (p < x.size()) {
|
|
return xvsc->ngl(home,b,x[p],n);
|
|
} else {
|
|
p -= x.size();
|
|
return yvsc->ngl(home,b,y[p],n);
|
|
}
|
|
}
|
|
|
|
void
|
|
IntBoolBrancherBase::print(const Space& home, const Choice& _c,
|
|
unsigned int b,
|
|
std::ostream& o) const {
|
|
const PosIntChoice& c
|
|
= static_cast<const PosIntChoice&>(_c);
|
|
int p=c.pos(); int n=c.val();
|
|
if (p < x.size()) {
|
|
xvsc->print(home,b,x[p],p,n,o);
|
|
} else {
|
|
p -= x.size();
|
|
yvsc->print(home,b,y[p],p,n,o);
|
|
}
|
|
}
|
|
|
|
const Choice*
|
|
IntBoolBrancherBase::choice(const Space& home, Archive& e) {
|
|
(void) home;
|
|
int p; e >> p;
|
|
int v; e >> v;
|
|
return new PosIntChoice(*this,2,p,v);
|
|
}
|
|
|
|
|
|
void
|
|
branch(Home home, const IntVarArgs& x, const BoolVarArgs& y,
|
|
IntBoolVarBranch vars, IntValBranch vals) {
|
|
if (home.failed()) return;
|
|
vars.expand(home,x,y);
|
|
ViewArray<Int::IntView> xv(home,x);
|
|
ViewArray<Int::BoolView> yv(home,y);
|
|
ValSelCommitBase<Int::IntView,int>* xvsc =
|
|
Int::Branch::valselcommit(home,vals);
|
|
ValSelCommitBase<Int::BoolView,int>* yvsc =
|
|
Int::Branch::valselcommit(home,i2b(vals));
|
|
switch (vars.select()) {
|
|
case IntBoolVarBranch::SEL_AFC_MAX:
|
|
{
|
|
MeritMaxAFC m(home,vars);
|
|
IntBoolBrancher<MeritMaxAFC>::post(home,xv,yv,m,xvsc,yvsc);
|
|
}
|
|
break;
|
|
case IntBoolVarBranch::SEL_ACTION_MAX:
|
|
{
|
|
MeritMaxAction m(home,vars);
|
|
IntBoolBrancher<MeritMaxAction>::post(home,xv,yv,m,xvsc,yvsc);
|
|
}
|
|
break;
|
|
case IntBoolVarBranch::SEL_CHB_MAX:
|
|
{
|
|
MeritMaxCHB m(home,vars);
|
|
IntBoolBrancher<MeritMaxCHB>::post(home,xv,yv,m,xvsc,yvsc);
|
|
}
|
|
break;
|
|
case IntBoolVarBranch::SEL_AFC_SIZE_MAX:
|
|
{
|
|
MeritMaxAFCSize m(home,vars);
|
|
IntBoolBrancher<MeritMaxAFCSize>::post(home,xv,yv,m,xvsc,yvsc);
|
|
}
|
|
break;
|
|
case IntBoolVarBranch::SEL_ACTION_SIZE_MAX:
|
|
{
|
|
MeritMaxActionSize m(home,vars);
|
|
IntBoolBrancher<MeritMaxActionSize>::post(home,xv,yv,m,xvsc,yvsc);
|
|
}
|
|
break;
|
|
case IntBoolVarBranch::SEL_CHB_SIZE_MAX:
|
|
{
|
|
MeritMaxCHBSize m(home,vars);
|
|
IntBoolBrancher<MeritMaxCHBSize>::post(home,xv,yv,m,xvsc,yvsc);
|
|
}
|
|
break;
|
|
default:
|
|
GECODE_NEVER;
|
|
}
|
|
}
|
|
|
|
}}
|
|
|
|
// STATISTICS: flatzinc-branch
|
|
|