git-subtree-dir: software/gecode_on_record git-subtree-split: 37ed9bda495ea87e63217c19a374b5a93bb0078e
265 lines
7.8 KiB
C++
Executable File
265 lines
7.8 KiB
C++
Executable File
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
|
/*
|
|
* Main authors:
|
|
* Christian Schulte <schulte@gecode.org>
|
|
*
|
|
* Copyright:
|
|
* Christian Schulte, 2003
|
|
*
|
|
* 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 <climits>
|
|
|
|
namespace Gecode { namespace Int { namespace Distinct {
|
|
|
|
template<class View>
|
|
forceinline
|
|
Graph<View>::Graph(void) {}
|
|
|
|
template<class View>
|
|
forceinline ExecStatus
|
|
Graph<View>::init(Space& home, ViewArray<View>& x) {
|
|
using namespace ViewValGraph;
|
|
n_view = x.size();
|
|
view = home.alloc<ViewNode<View>*>(n_view);
|
|
|
|
// Find value information for construction of view value graph
|
|
int min = x[0].min();
|
|
int max = x[0].max();
|
|
for (int i=1; i<n_view; i++) {
|
|
min = std::min(min,x[i].min());
|
|
max = std::max(max,x[i].max());
|
|
}
|
|
|
|
unsigned int width = static_cast<unsigned int>(max-min+1);
|
|
|
|
// Definitly not enough values
|
|
if (width < static_cast<unsigned int>(n_view))
|
|
return ES_FAILED;
|
|
|
|
// Initialize view nodes
|
|
for (int i=0; i<n_view; i++)
|
|
view[i] = new (home) ViewNode<View>(x[i]);
|
|
|
|
Region r;
|
|
|
|
if (static_cast<unsigned int>(n_view)*4 >= width) {
|
|
// Values are dense: use a mapping
|
|
ValNode<View>** val2node = r.alloc<ValNode<View>* >(width);
|
|
|
|
for (unsigned int i=0U; i<width; i++)
|
|
val2node[i]=nullptr;
|
|
|
|
for (int i=0; i<n_view; i++) {
|
|
Edge<View>** edge_p = view[i]->val_edges_ref();
|
|
for (ViewValues<View> xi(x[i]); xi(); ++xi) {
|
|
if (val2node[xi.val()-min] == nullptr)
|
|
val2node[xi.val()-min] = new (home) ValNode<View>(xi.val());
|
|
*edge_p = new (home) Edge<View>(val2node[xi.val()-min],view[i]);
|
|
edge_p = (*edge_p)->next_edge_ref();
|
|
}
|
|
*edge_p = nullptr;
|
|
}
|
|
|
|
for (unsigned int i=width; i--; )
|
|
if (val2node[i] != nullptr) {
|
|
val2node[i]->next_val(val);
|
|
val = val2node[i];
|
|
n_val++;
|
|
}
|
|
|
|
} else {
|
|
// Values are sparse
|
|
for (int i=0; i<n_view; i++)
|
|
ViewValGraph::Graph<View>::init(home,view[i]);
|
|
}
|
|
|
|
if (n_val < n_view)
|
|
return ES_FAILED;
|
|
|
|
typename ViewValGraph::Graph<View>::ViewNodeStack m(r,n_view);
|
|
for (int i=0; i<n_view; i++)
|
|
if (!match(m,view[i]))
|
|
return ES_FAILED;
|
|
return ES_OK;
|
|
}
|
|
|
|
template<class View>
|
|
forceinline bool
|
|
Graph<View>::sync(void) {
|
|
using namespace ViewValGraph;
|
|
Region r;
|
|
// Stack for view nodes to be rematched
|
|
typename ViewValGraph::Graph<View>::ViewNodeStack re(r,n_view);
|
|
// Synchronize nodes
|
|
for (int i = n_view; i--; ) {
|
|
ViewNode<View>* x = view[i];
|
|
GECODE_ASSUME(x != nullptr);
|
|
if (x->view().assigned()) {
|
|
x->edge_fst()->val(x)->matching(nullptr);
|
|
for (Edge<View>* e = x->val_edges(); e != nullptr; e = e->next_edge())
|
|
e->unlink();
|
|
view[i] = view[--n_view];
|
|
} else if (x->changed()) {
|
|
ViewRanges<View> rx(x->view());
|
|
Edge<View>* m = x->edge_fst(); // Matching edge
|
|
Edge<View>** p = x->val_edges_ref();
|
|
Edge<View>* e = *p;
|
|
GECODE_ASSUME(e != nullptr);
|
|
do {
|
|
while (e->val(x)->val() < rx.min()) {
|
|
// Skip edge
|
|
e->unlink(); e->mark();
|
|
e = e->next_edge();
|
|
}
|
|
*p = e;
|
|
assert(rx.min() == e->val(x)->val());
|
|
// This edges must be kept
|
|
for (unsigned int j=rx.width(); j--; ) {
|
|
e->free();
|
|
p = e->next_edge_ref();
|
|
e = e->next_edge();
|
|
}
|
|
++rx;
|
|
} while (rx());
|
|
*p = nullptr;
|
|
while (e != nullptr) {
|
|
e->unlink(); e->mark();
|
|
e = e->next_edge();
|
|
}
|
|
if (m->marked()) {
|
|
// Matching has been deleted!
|
|
m->val(x)->matching(nullptr);
|
|
re.push(x);
|
|
}
|
|
x->update();
|
|
} else {
|
|
// Just free edges
|
|
for (Edge<View>* e = x->val_edges(); e != nullptr; e = e->next_edge())
|
|
e->free();
|
|
}
|
|
}
|
|
|
|
typename ViewValGraph::Graph<View>::ViewNodeStack m(r,n_view);
|
|
while (!re.empty())
|
|
if (!match(m,re.pop()))
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
|
|
template<class View>
|
|
forceinline bool
|
|
Graph<View>::mark(void) {
|
|
using namespace ViewValGraph;
|
|
|
|
Region r;
|
|
|
|
int n_view_visited = 0;
|
|
{
|
|
// Marks all edges as used that are on simple paths in the graph
|
|
// that start from a free (unmatched node) by depth-first-search
|
|
Support::StaticStack<ValNode<View>*,Region> visit(r,n_val);
|
|
|
|
// Insert all free nodes: they can be only value nodes as we
|
|
// have a maximum matching covering all view nodes
|
|
count++;
|
|
{
|
|
ValNode<View>** v = &val;
|
|
while (*v != nullptr)
|
|
if (!(*v)->matching()) {
|
|
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<View>* n = visit.pop();
|
|
for (Edge<View>* e = n->edge_fst(); e != n->edge_lst(); e=e->next()) {
|
|
// Get the value node
|
|
e->use();
|
|
ViewNode<View>* x = e->view(n);
|
|
if (x->min < count) {
|
|
n_view_visited++;
|
|
x->min = count;
|
|
assert(x->edge_fst()->next() == x->edge_lst());
|
|
ValNode<View>* m = x->edge_fst()->val(x);
|
|
x->edge_fst()->use();
|
|
if (m->min < count) {
|
|
m->min = count;
|
|
visit.push(m);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// If all view nodes have been visited, also all edges are used!
|
|
if (n_view_visited < n_view) {
|
|
scc();
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
template<class View>
|
|
forceinline ExecStatus
|
|
Graph<View>::prune(Space& home, bool& assigned) {
|
|
using namespace ViewValGraph;
|
|
assigned = false;
|
|
// Tell constraints and also eliminate nodes and edges
|
|
for (int i = n_view; i--; ) {
|
|
ViewNode<View>* x = view[i];
|
|
if (!x->edge_fst()->used(x)) {
|
|
GECODE_ME_CHECK(x->view().eq(home,x->edge_fst()->val(x)->val()));
|
|
x->edge_fst()->val(x)->matching(nullptr);
|
|
for (Edge<View>* e = x->val_edges(); e != nullptr; e = e->next_edge())
|
|
e->unlink();
|
|
view[i] = view[--n_view];
|
|
assigned = true;
|
|
} else {
|
|
IterPruneVal<View> pv(view[i]);
|
|
GECODE_ME_CHECK(view[i]->view().minus_v(home,pv,false));
|
|
}
|
|
}
|
|
return ES_OK;
|
|
}
|
|
|
|
}}}
|
|
|
|
// STATISTICS: int-prop
|
|
|