/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte * * Copyright: * Christian Schulte, 2011 * * Last modified: * $Date: 2011-09-28 22:14:32 +1000 (Wed, 28 Sep 2011) $ by $Author: tack $ * $Revision: 12417 $ * * 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. * */ namespace Gecode { namespace Int { namespace NValues { forceinline Graph::Graph(void) : n_matched(0) {} forceinline int Graph::size(void) const { return n_matched; } forceinline void Graph::init(Space& home, const ValSet& vs, const ViewArray& x) { using namespace ViewValGraph; n_view = x.size() + vs.size(); view = home.alloc*>(n_view); // Create nodes corresponding to the value set vs { int i = x.size(); ValSet::Ranges vsr(vs); ValNode** v = &val; for (Iter::Ranges::ToValues n(vsr); n(); ++n) { // Create view node view[i] = new (home) ViewNode(); // Create and link value node ValNode* nv = new (home) ValNode(n.val()); *v = nv; v = nv->next_val_ref(); // Create and link single edge Edge** e = view[i]->val_edges_ref(); *e = new (home) Edge(nv,view[i],NULL); // Match edge (*e)->revert(view[i]); nv->matching(*e); i++; } *v = NULL; n_val = vs.size(); n_matched = vs.size(); assert(i - x.size() == vs.size()); } // Initialize real view nodes for (int i=x.size(); i--; ) { view[i] = new (home) ViewNode(x[i]); ViewValGraph::Graph::init(home,view[i]); } // Match the real view nodes, if possible Region r(home); ViewNodeStack m(r,n_view); for (int i = x.size(); i--; ) if (match(m,view[i])) n_matched++; } forceinline void Graph::sync(Space& home) { using namespace ViewValGraph; Region r(home); // Whether to rematch bool rematch = false; // Synchronize nodes for (int i = n_view; i--; ) { ViewNode* x = view[i]; // Skip faked view nodes, they correspond to values in the value set if (!x->fake()) { if (x->changed()) { ViewRanges r(x->view()); Edge* m = x->matched() ? x->edge_fst() : NULL; Edge** p = x->val_edges_ref(); Edge* e = *p; do { while (e->val(x)->val() < r.min()) { // Skip edge e->unlink(); e->mark(); e = e->next_edge(); } *p = e; assert(r.min() == e->val(x)->val()); // This edges must be kept for (unsigned int j=r.width(); j--; ) { e->free(); p = e->next_edge_ref(); e = e->next_edge(); } ++r; } while (r()); *p = NULL; while (e != NULL) { e->unlink(); e->mark(); e = e->next_edge(); } if ((m != NULL) && m->marked()) { // Matching has been deleted! m->val(x)->matching(NULL); rematch = true; n_matched--; } } else { // Just free edges for (Edge* e=x->val_edges(); e != NULL; e = e->next_edge()) e->free(); } } } if (rematch) { ViewNodeStack m(r,n_view); for (int i = n_view; i--; ) if (!view[i]->matched() && match(m,view[i])) n_matched++; } } forceinline bool Graph::mark(Space& home) { using namespace ViewValGraph; Region r(home); int n_view_visited = 0; { // Marks all edges as used that are on simple paths in the graph // that start from a free value node by depth-first-search Support::StaticStack*,Region> visit(r,n_val); // Insert all free value nodes count++; { ValNode** v = &val; while (*v != NULL) // Is the node free? if (!(*v)->matching()) { // Eliminate empty value nodes if ((*v)->empty()) { *v = (*v)->next_val(); n_val--; } else { (*v)->min = count; visit.push(*v); v = (*v)->next_val_ref(); } } else { v = (*v)->next_val_ref(); } } // Invariant: only value nodes are on the stack! while (!visit.empty()) { ValNode* n = visit.pop(); for (Edge* e = n->edge_fst(); e != n->edge_lst(); e = e->next()) { // Is the view node is matched: the path must be alternating! ViewNode* x = e->view(n); if (x->matched()) { // Mark the edge as used e->use(); if (x->min < count) { n_view_visited++; x->min = count; assert(x->edge_fst()->next() == x->edge_lst()); ValNode* m = x->edge_fst()->val(x); x->edge_fst()->use(); if (m->min < count) { m->min = count; visit.push(m); } } } } } } if (n_view_visited < n_view) { // Mark all edges as used starting from a free view node on // an alternating path by depth-first search. Support::StaticStack*,Region> visit(r,n_view); // Insert all free view nodes count++; for (int i = n_view; i--; ) if (!view[i]->matched()) { view[i]->min = count; visit.push(view[i]); } // Invariant: only view nodes are on the stack! while (!visit.empty()) { n_view_visited++; ViewNode* x = visit.pop(); for (Edge* e = x->val_edges(); e != NULL; e = e->next_edge()) // Consider only free edges if (e != x->edge_fst()) { ValNode* n = e->val(x); // Is there a matched edge from the value node to a view node? if (n->matching() != NULL) { e->use(); n->matching()->use(); ViewNode* y = n->matching()->view(n); if (y->min < count) { y->min = count; visit.push(y); } } } } } if (n_view_visited < n_view) { scc(home); return true; } else { return false; } } forceinline ExecStatus Graph::prune(Space& home) { using namespace ViewValGraph; // Tell constraints and also eliminate nodes and edges for (int i = n_view; i--; ) { ViewNode* x = view[i]; if (!x->fake()) { if (x->matched() && !x->edge_fst()->used(x)) { GECODE_ME_CHECK(x->view().eq(home,x->edge_fst()->val(x)->val())); x->edge_fst()->val(x)->matching(NULL); for (Edge* e = x->val_edges(); e != NULL; e=e->next_edge()) e->unlink(); view[i] = view[--n_view]; } else { IterPruneVal pv(x); GECODE_ME_CHECK(x->view().minus_v(home,pv,false)); } } } return ES_OK; } }}} // STATISTICS: int-prop