/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * Guido Tack * * Copyright: * Christian Schulte, 2009 * Guido Tack, 2010 * * 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 #include namespace Gecode { namespace Int { namespace Cumulative { template void cumulative(Home home, Cap c, const TaskTypeArgs& t, const IntVarArgs& s, const IntArgs& p, const IntArgs& u, IntPropLevel ipl) { if ((s.size() != p.size()) || (s.size() != u.size()) || (s.size() != t.size())) throw ArgumentSizeMismatch("Int::cumulative"); long long int w = 0; for (int i=0; i(s[i].max()) + p[i], "Int::cumulative"); mul_check(p[i],u[i]); w += s[i].width(); } mul_check(c.max(),w,s.size()); GECODE_POST; int minU = INT_MAX; int minU2 = INT_MAX; int maxU = INT_MIN; for (int i=0; i maxU) maxU = u[i]; } bool disjunctive = (minU > c.max()/2) || (minU2 > c.max()/2 && minU+minU2>c.max()); if (disjunctive) { GECODE_ME_FAIL(c.gq(home,maxU)); unary(home,t,s,p,ipl); } else { bool fixp = true; for (int i=0; i0) nonOptionals++; if (fixp) { TaskArray tasks(home,nonOptionals); int cur = 0; for (int i=0; i 0) tasks[cur++].init(s[i],p[i],u[i]); GECODE_ES_FAIL(manpost(home,c,tasks,ipl)); } else { TaskArray tasks(home,nonOptionals); int cur = 0; for (int i=0; i 0) tasks[cur++].init(t[i],s[i],p[i],u[i]); GECODE_ES_FAIL(manpost(home,c,tasks,ipl)); } } } template void cumulative(Home home, Cap c, const TaskTypeArgs& t, const IntVarArgs& s, const IntArgs& p, const IntArgs& u, const BoolVarArgs& m, IntPropLevel ipl) { using namespace Gecode::Int; using namespace Gecode::Int::Cumulative; if ((s.size() != p.size()) || (s.size() != u.size()) || (s.size() != t.size()) || (s.size() != m.size())) throw Int::ArgumentSizeMismatch("Int::cumulative"); long long int w = 0; for (int i=0; i(s[i].max()) + p[i], "Int::cumulative"); mul_check(p[i],u[i]); w += s[i].width(); } mul_check(c.max(),w,s.size()); GECODE_POST; bool allMandatory = true; for (int i=0; i0) nonOptionals++; if (fixp) { TaskArray tasks(home,nonOptionals); int cur = 0; for (int i=0; i0) tasks[cur++].init(s[i],p[i],u[i],m[i]); GECODE_ES_FAIL(optpost(home,c,tasks,ipl)); } else { TaskArray tasks(home,nonOptionals); int cur = 0; for (int i=0; i0) tasks[cur++].init(t[i],s[i],p[i],u[i],m[i]); GECODE_ES_FAIL(optpost(home,c,tasks,ipl)); } } } template void cumulative(Home home, Cap c, const IntVarArgs& s, const IntArgs& p, const IntArgs& u, IntPropLevel ipl) { using namespace Gecode::Int; using namespace Gecode::Int::Cumulative; if ((s.size() != p.size()) || (s.size() != u.size())) throw Int::ArgumentSizeMismatch("Int::cumulative"); long long int w = 0; for (int i=0; i(s[i].max()) + p[i], "Int::cumulative"); mul_check(p[i],u[i]); w += s[i].width(); } mul_check(c.max(),w,s.size()); GECODE_POST; int minU = INT_MAX; int minU2 = INT_MAX; int maxU = INT_MIN; for (int i=0; i maxU) maxU = u[i]; } bool disjunctive = (minU > c.max()/2) || (minU2 > c.max()/2 && minU+minU2>c.max()); if (disjunctive) { GECODE_ME_FAIL(c.gq(home,maxU)); unary(home,s,p,ipl); } else { int nonOptionals = 0; for (int i=0; i0) nonOptionals++; TaskArray t(home,nonOptionals); int cur = 0; for (int i=0; i0) t[cur++].init(s[i],p[i],u[i]); GECODE_ES_FAIL(manpost(home,c,t,ipl)); } } template void cumulative(Home home, Cap c, const IntVarArgs& s, const IntArgs& p, const IntArgs& u, const BoolVarArgs& m, IntPropLevel ipl) { using namespace Gecode::Int; using namespace Gecode::Int::Cumulative; if ((s.size() != p.size()) || (s.size() != u.size()) || (s.size() != m.size())) throw Int::ArgumentSizeMismatch("Int::cumulative"); long long int w = 0; for (int i=0; i(s[i].max()) + p[i], "Int::cumulative"); mul_check(p[i],u[i]); w += s[i].width(); } mul_check(c.max(),w,s.size()); GECODE_POST; bool allMandatory = true; for (int i=0; i0) nonOptionals++; TaskArray t(home,nonOptionals); int cur = 0; for (int i=0; i0) t[cur++].init(s[i],p[i],u[i],m[i]); GECODE_ES_FAIL(optpost(home,c,t,ipl)); } } template void cumulative(Home home, Cap c, const IntVarArgs& s, const IntVarArgs& p, const IntVarArgs& e, const IntArgs& u, IntPropLevel ipl) { using namespace Gecode::Int; using namespace Gecode::Int::Cumulative; if ((s.size() != p.size()) || (s.size() != e.size()) || (s.size() != u.size())) throw Int::ArgumentSizeMismatch("Int::cumulative"); long long int w = 0; for (int i=0; i(s[i].max()) + p[i].max(), "Int::cumulative"); mul_check(p[i].max(),u[i]); w += s[i].width(); } mul_check(c.max(),w,s.size()); GECODE_POST; for (int i=0; i0) nonOptionals++; TaskArray t(home,nonOptionals); int cur = 0; for (int i=0; i0) t[cur++].init(s[i],p[i],e[i],u[i]); GECODE_ES_FAIL(manpost(home,c,t,ipl)); } } template void cumulative(Home home, Cap c, const IntVarArgs& s, const IntVarArgs& p, const IntVarArgs& e, const IntArgs& u, const BoolVarArgs& m, IntPropLevel ipl) { using namespace Gecode::Int; using namespace Gecode::Int::Cumulative; if ((s.size() != p.size()) || (s.size() != u.size()) || (s.size() != e.size()) || (s.size() != m.size())) throw Int::ArgumentSizeMismatch("Int::cumulative"); long long int w = 0; for (int i=0; i(s[i].max()) + p[i].max(), "Int::cumulative"); mul_check(p[i].max(),u[i]); w += s[i].width(); } mul_check(c.max(),w,s.size()); GECODE_POST; for (int i=0; i0) nonOptionals++; TaskArray t(home,nonOptionals); int cur = 0; for (int i=0; i0) t[cur++].init(s[i],p[i],e[i],u[i],m[i]); GECODE_ES_FAIL(optpost(home,c,t,ipl)); } } }}} namespace Gecode { void cumulative(Home home, int c, const TaskTypeArgs& t, const IntVarArgs& s, const IntArgs& p, const IntArgs& u, IntPropLevel ipl) { Int::Limits::nonnegative(c,"Int::cumulative"); Int::Cumulative::cumulative(home,Int::ConstIntView(c),t,s,p,u,ipl); } void cumulative(Home home, IntVar c, const TaskTypeArgs& t, const IntVarArgs& s, const IntArgs& p, const IntArgs& u, IntPropLevel ipl) { if (c.assigned()) cumulative(home,c.val(),t,s,p,u,ipl); else Int::Cumulative::cumulative(home,Int::IntView(c),t,s,p,u,ipl); } void cumulative(Home home, int c, const TaskTypeArgs& t, const IntVarArgs& s, const IntArgs& p, const IntArgs& u, const BoolVarArgs& m, IntPropLevel ipl) { Int::Limits::nonnegative(c,"Int::cumulative"); Int::Cumulative::cumulative(home,Int::ConstIntView(c),t,s,p,u,m,ipl); } void cumulative(Home home, IntVar c, const TaskTypeArgs& t, const IntVarArgs& s, const IntArgs& p, const IntArgs& u, const BoolVarArgs& m, IntPropLevel ipl) { if (c.assigned()) cumulative(home,c.val(),t,s,p,u,m,ipl); else Int::Cumulative::cumulative(home,Int::IntView(c),t,s,p,u,m,ipl); } void cumulative(Home home, int c, const IntVarArgs& s, const IntArgs& p, const IntArgs& u, IntPropLevel ipl) { Int::Limits::nonnegative(c,"Int::cumulative"); Int::Cumulative::cumulative(home,Int::ConstIntView(c),s,p,u,ipl); } void cumulative(Home home, IntVar c, const IntVarArgs& s, const IntArgs& p, const IntArgs& u, IntPropLevel ipl) { if (c.assigned()) cumulative(home,c.val(),s,p,u,ipl); else Int::Cumulative::cumulative(home,Int::IntView(c),s,p,u,ipl); } void cumulative(Home home, int c, const IntVarArgs& s, const IntArgs& p, const IntArgs& u, const BoolVarArgs& m, IntPropLevel ipl) { Int::Limits::nonnegative(c,"Int::cumulative"); Int::Cumulative::cumulative(home,Int::ConstIntView(c),s,p,u,m,ipl); } void cumulative(Home home, IntVar c, const IntVarArgs& s, const IntArgs& p, const IntArgs& u, const BoolVarArgs& m, IntPropLevel ipl) { if (c.assigned()) cumulative(home,c.val(),s,p,u,m,ipl); else Int::Cumulative::cumulative(home,Int::IntView(c),s,p,u,m,ipl); } void cumulative(Home home, int c, const IntVarArgs& s, const IntVarArgs& p, const IntVarArgs& e, const IntArgs& u, IntPropLevel ipl) { Int::Limits::nonnegative(c,"Int::cumulative"); Int::Cumulative::cumulative(home,Int::ConstIntView(c),s,p,e,u,ipl); } void cumulative(Home home, IntVar c, const IntVarArgs& s, const IntVarArgs& p, const IntVarArgs& e, const IntArgs& u, IntPropLevel ipl) { if (c.assigned()) cumulative(home,c.val(),s,p,e,u,ipl); else Int::Cumulative::cumulative(home,Int::IntView(c),s,p,e,u,ipl); } void cumulative(Home home, int c, const IntVarArgs& s, const IntVarArgs& p, const IntVarArgs& e, const IntArgs& u, const BoolVarArgs& m, IntPropLevel ipl) { Int::Limits::nonnegative(c,"Int::cumulative"); Int::Cumulative::cumulative(home,Int::ConstIntView(c),s,p,e,u,m,ipl); } void cumulative(Home home, IntVar c, const IntVarArgs& s, const IntVarArgs& p, const IntVarArgs& e, const IntArgs& u, const BoolVarArgs& m, IntPropLevel ipl) { if (c.assigned()) cumulative(home,c.val(),s,p,e,u,m,ipl); else Int::Cumulative::cumulative(home,Int::IntView(c),s,p,e,u,m,ipl); } } // STATISTICS: int-post