163 lines
5.8 KiB
C++
163 lines
5.8 KiB
C++
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
|
/*
|
|
* Main authors:
|
|
* Christian Schulte <schulte@gecode.org>
|
|
*
|
|
* Copyright:
|
|
* Christian Schulte, 2012
|
|
*
|
|
* 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/int/branch.hh>
|
|
|
|
namespace Gecode { namespace Int { namespace Branch {
|
|
|
|
ValSelCommitBase<IntView,int>*
|
|
valselcommit(Space& home, const IntValBranch& ivb) {
|
|
assert((ivb.select() != IntValBranch::SEL_VALUES_MIN) &&
|
|
(ivb.select() != IntValBranch::SEL_VALUES_MAX));
|
|
switch (ivb.select()) {
|
|
case IntValBranch::SEL_MIN:
|
|
return new (home)
|
|
ValSelCommit<ValSelMin<IntView>,ValCommitEq<IntView> >(home,ivb);
|
|
case IntValBranch::SEL_MED:
|
|
return new (home)
|
|
ValSelCommit<ValSelMed<IntView>,ValCommitEq<IntView> >(home,ivb);
|
|
case IntValBranch::SEL_MAX:
|
|
return new (home)
|
|
ValSelCommit<ValSelMax<IntView>,ValCommitEq<IntView> >(home,ivb);
|
|
case IntValBranch::SEL_RND:
|
|
return new (home)
|
|
ValSelCommit<ValSelRnd<IntView>,ValCommitEq<IntView> >(home,ivb);
|
|
case IntValBranch::SEL_SPLIT_MIN:
|
|
return new (home)
|
|
ValSelCommit<ValSelAvg<IntView>,ValCommitLq<IntView> >(home,ivb);
|
|
case IntValBranch::SEL_SPLIT_MAX:
|
|
return new (home)
|
|
ValSelCommit<ValSelAvg<IntView>,ValCommitGr<IntView> >(home,ivb);
|
|
case IntValBranch::SEL_RANGE_MIN:
|
|
return new (home)
|
|
ValSelCommit<ValSelRangeMin,ValCommitLq<IntView> >(home,ivb);
|
|
case IntValBranch::SEL_RANGE_MAX:
|
|
return new (home)
|
|
ValSelCommit<ValSelRangeMax,ValCommitGq<IntView> >(home,ivb);
|
|
case IntValBranch::SEL_VAL_COMMIT:
|
|
if (!ivb.commit()) {
|
|
return new (home)
|
|
ValSelCommit<ValSelFunction<IntView>,ValCommitEq<IntView> >(home,ivb);
|
|
} else {
|
|
return new (home)
|
|
ValSelCommit<ValSelFunction<IntView>,ValCommitFunction<IntView> >(home,ivb);
|
|
}
|
|
default:
|
|
throw UnknownBranching("Int::branch");
|
|
}
|
|
}
|
|
|
|
ValSelCommitBase<IntView,int>*
|
|
valselcommit(Space& home, const IntAssign& ia) {
|
|
switch (ia.select()) {
|
|
case IntAssign::SEL_MIN:
|
|
return new (home)
|
|
ValSelCommit<ValSelMin<IntView>,ValCommitEq<IntView> >(home,ia);
|
|
case IntAssign::SEL_MED:
|
|
return new (home)
|
|
ValSelCommit<ValSelMed<IntView>,ValCommitEq<IntView> >(home,ia);
|
|
case IntAssign::SEL_MAX:
|
|
return new (home)
|
|
ValSelCommit<ValSelMax<IntView>,ValCommitEq<IntView> >(home,ia);
|
|
case IntAssign::SEL_RND:
|
|
return new (home)
|
|
ValSelCommit<ValSelRnd<IntView>,ValCommitEq<IntView> >(home,ia);
|
|
case IntAssign::SEL_VAL_COMMIT:
|
|
if (!ia.commit()) {
|
|
return new (home)
|
|
ValSelCommit<ValSelFunction<IntView>,ValCommitEq<IntView> >(home,ia);
|
|
} else {
|
|
return new (home)
|
|
ValSelCommit<ValSelFunction<IntView>,ValCommitFunction<IntView> >(home,ia);
|
|
}
|
|
default:
|
|
throw UnknownBranching("Int::assign");
|
|
}
|
|
}
|
|
|
|
ValSelCommitBase<BoolView,int>*
|
|
valselcommit(Space& home, const BoolValBranch& bvb) {
|
|
switch (bvb.select()) {
|
|
case BoolValBranch::SEL_MIN:
|
|
return new (home)
|
|
ValSelCommit<ValSelMin<BoolView>,ValCommitEq<BoolView> >(home,bvb);
|
|
case BoolValBranch::SEL_MAX:
|
|
return new (home)
|
|
ValSelCommit<ValSelMax<BoolView>,ValCommitEq<BoolView> >(home,bvb);
|
|
case BoolValBranch::SEL_RND:
|
|
return new (home)
|
|
ValSelCommit<ValSelRnd<BoolView>,ValCommitEq<BoolView> >(home,bvb);
|
|
case BoolValBranch::SEL_VAL_COMMIT:
|
|
if (!bvb.commit()) {
|
|
return new (home)
|
|
ValSelCommit<ValSelFunction<BoolView>,ValCommitEq<BoolView> >(home,bvb);
|
|
} else {
|
|
return new (home)
|
|
ValSelCommit<ValSelFunction<BoolView>,ValCommitFunction<BoolView> >(home,bvb);
|
|
}
|
|
default:
|
|
throw UnknownBranching("Int::branch");
|
|
}
|
|
}
|
|
|
|
ValSelCommitBase<BoolView,int>*
|
|
valselcommit(Space& home, const BoolAssign& ba) {
|
|
switch (ba.select()) {
|
|
case BoolAssign::SEL_MIN:
|
|
return new (home)
|
|
ValSelCommit<ValSelMin<BoolView>,ValCommitEq<BoolView> >(home,ba);
|
|
case BoolAssign::SEL_MAX:
|
|
return new (home)
|
|
ValSelCommit<ValSelMax<BoolView>,ValCommitEq<BoolView> >(home,ba);
|
|
case BoolAssign::SEL_RND:
|
|
return new (home)
|
|
ValSelCommit<ValSelRnd<BoolView>,ValCommitEq<BoolView> >(home,ba);
|
|
case BoolAssign::SEL_VAL_COMMIT:
|
|
if (!ba.commit()) {
|
|
return new (home)
|
|
ValSelCommit<ValSelFunction<BoolView>,ValCommitEq<BoolView> >(home,ba);
|
|
} else {
|
|
return new (home)
|
|
ValSelCommit<ValSelFunction<BoolView>,ValCommitFunction<BoolView> >(home,ba);
|
|
}
|
|
default:
|
|
throw UnknownBranching("Int::assign");
|
|
}
|
|
}
|
|
|
|
}}}
|
|
|
|
|
|
// STATISTICS: int-branch
|
|
|