use a sorted vector to store the node childs

This commit is contained in:
Tiago Gomes 2012-04-15 21:44:27 +01:00
parent 5e7b660f44
commit c32ad3de0a
2 changed files with 199 additions and 148 deletions

View File

@ -7,29 +7,23 @@
void void
CTNode::addChild (CTNode* child, bool updateLevels) CTNode::addChild (CTNode* n, bool updateLevels)
{ {
if (updateLevels) { if (updateLevels) {
updateChildLevels (child, level_ + 1); updateChildLevels (n, level_ + 1);
} }
bool found = false; CTChilds::iterator chIt = findChild (n);
for (CTNodes::const_iterator chIt = childs_.begin(); if (chIt != childs_.end()) {
chIt != childs_.end(); ++ chIt) { assert ((*chIt)->symbol() == n->symbol());
if (child->symbol() == (*chIt)->symbol()) { const CTChilds& childsToAdd = n->childs();
CTNodes childChildsCopy = child->childs(); for (CTChilds::const_iterator it = childsToAdd.begin();
for (CTNodes::const_iterator ccIt = childChildsCopy.begin(); it != childsToAdd.end(); ++ it) {
ccIt != childChildsCopy.end(); ++ ccIt) { (*chIt)->addChild (*it, false);
(*chIt)->addChild (*ccIt, false);
}
found = true;
break;
} }
} delete n;
if (found) {
delete child;
} else { } else {
childs_.push_back (child); // childs_.push_back (n);
// childs_.insert (child); childs_.insert (n);
} }
} }
@ -38,8 +32,11 @@ CTNode::addChild (CTNode* child, bool updateLevels)
void void
CTNode::removeChild (CTNode* child) CTNode::removeChild (CTNode* child)
{ {
CTNodes::iterator it; CTChilds::iterator it;
it = std::find (childs_.begin(), childs_.end(), child); it = findChild (child);
if (it == childs_.end()) {
cout << "oops" << endl;
}
assert (it != childs_.end()); assert (it != childs_.end());
childs_.erase (it); childs_.erase (it);
} }
@ -66,7 +63,7 @@ CTNode::removeAndDeleteChild (CTNode* child)
void void
CTNode::removeAndDeleteAllChilds (void) CTNode::removeAndDeleteAllChilds (void)
{ {
for (CTNodes::const_iterator chIt = childs_.begin(); for (CTChilds::const_iterator chIt = childs_.begin();
chIt != childs_.end(); ++ chIt) { chIt != childs_.end(); ++ chIt) {
deleteSubtree (*chIt); deleteSubtree (*chIt);
} }
@ -79,7 +76,7 @@ SymbolSet
CTNode::childSymbols (void) const CTNode::childSymbols (void) const
{ {
SymbolSet symbols; SymbolSet symbols;
for (CTNodes::const_iterator chIt = childs_.begin(); for (CTChilds::const_iterator chIt = childs_.begin();
chIt != childs_.end(); ++ chIt) { chIt != childs_.end(); ++ chIt) {
symbols.insert ((*chIt)->symbol()); symbols.insert ((*chIt)->symbol());
} }
@ -92,8 +89,8 @@ void
CTNode::updateChildLevels (CTNode* n, unsigned level) CTNode::updateChildLevels (CTNode* n, unsigned level)
{ {
n->setLevel (level); n->setLevel (level);
const CTNodes& childs = n->childs(); const CTChilds& childs = n->childs();
for (CTNodes::const_iterator chIt = childs.begin(); for (CTChilds::const_iterator chIt = childs.begin();
chIt != childs.end(); ++ chIt) { chIt != childs.end(); ++ chIt) {
updateChildLevels (*chIt, level + 1); updateChildLevels (*chIt, level + 1);
} }
@ -105,9 +102,9 @@ CTNode*
CTNode::copySubtree (const CTNode* n) CTNode::copySubtree (const CTNode* n)
{ {
CTNode* newNode = new CTNode (*n); CTNode* newNode = new CTNode (*n);
const CTNodes& childs = n->childs(); const CTChilds& childs = n->childs();
for (CTNodes::const_iterator chIt = childs.begin(); for (CTChilds::const_iterator chIt = childs.begin();
chIt != childs.end(); ++ chIt) { chIt != childs.end(); ++ chIt) {
newNode->addChild (copySubtree (*chIt)); newNode->addChild (copySubtree (*chIt));
} }
return newNode; return newNode;
@ -119,8 +116,8 @@ void
CTNode::deleteSubtree (CTNode* n) CTNode::deleteSubtree (CTNode* n)
{ {
assert (n); assert (n);
const CTNodes& childs = n->childs(); const CTChilds& childs = n->childs();
for (CTNodes::const_iterator chIt = childs.begin(); for (CTChilds::const_iterator chIt = childs.begin();
chIt != childs.end(); ++ chIt) { chIt != childs.end(); ++ chIt) {
deleteSubtree (*chIt); deleteSubtree (*chIt);
} }
@ -158,8 +155,9 @@ ConstraintTree::ConstraintTree (const LogVars& logVars)
ConstraintTree::ConstraintTree (const LogVars& logVars, ConstraintTree::ConstraintTree (
const Tuples& tuples) const LogVars& logVars,
const Tuples& tuples)
{ {
root_ = new CTNode (0, 0); root_ = new CTNode (0, 0);
logVars_ = logVars; logVars_ = logVars;
@ -190,10 +188,23 @@ ConstraintTree::~ConstraintTree (void)
void void
ConstraintTree::addTuple (const Tuple& tuple) ConstraintTree::addTuple (const Tuple& tuple)
{ {
CTNode* prevNode = root_; CTNode* prevNode = root_;
CTNodes currNodes = root_->childs();
for (unsigned i = 0; i < tuple.size(); i++) { for (unsigned i = 0; i < tuple.size(); i++) {
CTNodes::const_iterator it = currNodes.begin(); CTNode tmp (tuple[i], 0);
CTChilds::const_iterator it = prevNode->findChild (&tmp);
if (it == prevNode->childs().end()) {
CTNode* newNode = new CTNode (tuple[i], i + 1);
prevNode->addChild (newNode, false);
prevNode = newNode;
} else {
prevNode = *it;
}
}
/*
CTNode* prevNode = root_;
CTChilds currNodes = root_->childs();
for (unsigned i = 0; i < tuple.size(); i++) {
CTChilds::const_iterator it = currNodes.begin();
while (it != currNodes.end() && (*it)->symbol() != tuple[i]) { while (it != currNodes.end() && (*it)->symbol() != tuple[i]) {
++ it; ++ it;
} }
@ -207,6 +218,7 @@ ConstraintTree::addTuple (const Tuple& tuple)
currNodes = (*it)->childs(); currNodes = (*it)->childs();
} }
} }
*/
} }
@ -214,24 +226,17 @@ ConstraintTree::addTuple (const Tuple& tuple)
bool bool
ConstraintTree::containsTuple (const Tuple& tuple) ConstraintTree::containsTuple (const Tuple& tuple)
{ {
queue<CTNode*> queue; CTNode* prevNode = root_;
queue.push (root_); for (unsigned i = 0; i < tuple.size(); i++) {
CTNode tmp (tuple[i], 0);
while (queue.empty() == false) { CTChilds::const_iterator it = prevNode->findChild (&tmp);
CTNode* n = queue.front(); if (it == prevNode->childs().end()) {
if (n == root_ || n->symbol() == (tuple[n->level() - 1])) { return false;
if (n->level() == tuple.size()) { } else {
return true; prevNode = *it;
} else {
for (CTNodes::const_iterator chIt = n->childs().begin();
chIt != n->childs().end(); ++ chIt) {
queue.push (*chIt);
}
}
} }
queue.pop();
} }
return false; return true;
} }
@ -283,10 +288,10 @@ ConstraintTree::join (ConstraintTree* ct, bool assertWhenNotFound)
LogVarSet intersect = logVarSet_ & ct->logVarSet_; LogVarSet intersect = logVarSet_ & ct->logVarSet_;
if (intersect.empty()) { if (intersect.empty()) {
CTNodes leafs = getNodesAtLevel (getLevel (logVars_.back())); CTNodes leafs = getNodesAtLevel (getLevel (logVars_.back()));
const CTNodes& childs = ct->root()->childs(); const CTChilds& childs = ct->root()->childs();
for (CTNodes::const_iterator leafIt = leafs.begin(); for (CTNodes::const_iterator leafIt = leafs.begin();
leafIt != leafs.end(); ++ leafIt) { leafIt != leafs.end(); ++ leafIt) {
for (CTNodes::const_iterator chIt = childs.begin(); for (CTChilds::const_iterator chIt = childs.begin();
chIt != childs.end(); ++ chIt) { chIt != childs.end(); ++ chIt) {
(*leafIt)->addChild (CTNode::copySubtree (*chIt)); (*leafIt)->addChild (CTNode::copySubtree (*chIt));
} }
@ -295,29 +300,19 @@ ConstraintTree::join (ConstraintTree* ct, bool assertWhenNotFound)
logVarSet_ |= ct->logVarSet_; logVarSet_ |= ct->logVarSet_;
} else { } else {
moveToBottom (intersect.elements()); moveToTop (intersect.elements());
ct->moveToTop (intersect.elements()); ct->moveToTop (intersect.elements());
unsigned level = getLevel (intersect.front());
CTNodes nodes = getNodesAtLevel (level);
Tuples tuples; Tuples tuples;
CTNodes continNodes; CTNodes appendNodes;
getTuples (ct->root(), getTuples (ct->root(), Tuples(), intersect.size(),
Tuples(), tuples, appendNodes);
intersect.size(),
tuples,
continNodes);
CTNodes::const_iterator continIt; CTNodes::const_iterator appendIt = appendNodes.begin();
continIt = continNodes.begin(); for (unsigned i = 0; i < tuples.size(); ++ i, ++ appendIt) {
for (unsigned i = 0; i < tuples.size(); i++, ++ continIt) { bool tupleFounded = join (root_, tuples[i], 0, *appendIt);
bool tupleFounded = false;
for (CTNodes::const_iterator nodeIt = nodes.begin();
nodeIt != nodes.end(); ++ nodeIt) {
tupleFounded |= join (*nodeIt, tuples[i], 0, *continIt);
}
if (assertWhenNotFound) { if (assertWhenNotFound) {
tupleFounded; // hack to avoid gcc warning
assert (tupleFounded); assert (tupleFounded);
} }
} }
@ -409,13 +404,15 @@ ConstraintTree::remove (const LogVarSet& X)
bool bool
ConstraintTree::ConstraintTree::isSingleton (LogVar X) ConstraintTree::ConstraintTree::isSingleton (LogVar X)
{ {
SymbolSet symbols; const CTNodes& nodes = getNodesAtLevel (getLevel (X));
CTNodes nodes = getNodesAtLevel (getLevel (X)); Symbol symb = nodes.front()->symbol();
for (CTNodes::const_iterator it = nodes.begin(); for (CTNodes::const_iterator it = nodes.begin();
it != nodes.end(); ++ it) { it != nodes.end(); ++ it) {
symbols.insert ((*it)->symbol()); if ((*it)->symbol() != symb) {
return false;
}
} }
return symbols.size() == 1; return true;
} }
@ -484,10 +481,10 @@ ConstraintTree::exportToGraphViz (
} }
for (CTNodes::const_iterator it = nodes.begin(); for (CTNodes::const_iterator it = nodes.begin();
it != nodes.end(); ++ it) { it != nodes.end(); ++ it) {
const CTNodes& childs = (*it)->childs(); const CTChilds& childs = (*it)->childs();
for (CTNodes::const_iterator chIt = childs.begin(); for (CTChilds::const_iterator chIt = childs.begin();
chIt != childs.end(); ++ chIt) { chIt != childs.end(); ++ chIt) {
out << "\"" << **it << "\"" ; out << "\"" << *it << "\"" ;
out << " -> " ; out << " -> " ;
out << "\"" << *chIt << "\"" << endl ; out << "\"" << *chIt << "\"" << endl ;
} }
@ -666,9 +663,9 @@ ConstraintTree::countNormalize (const LogVarSet& Ys)
ConstraintTrees cts; ConstraintTrees cts;
unordered_map<unsigned, ConstraintTree*> countMap; unordered_map<unsigned, ConstraintTree*> countMap;
unsigned stopLevel = getLevel (Zs.back()); unsigned stopLevel = getLevel (Zs.back());
const CTNodes& childs = root_->childs(); const CTChilds& childs = root_->childs();
for (CTNodes::const_iterator chIt = childs.begin(); for (CTChilds::const_iterator chIt = childs.begin();
chIt != childs.end(); ++ chIt) { chIt != childs.end(); ++ chIt) {
const vector<pair<CTNode*, unsigned>>& res const vector<pair<CTNode*, unsigned>>& res
= countNormalize (*chIt, stopLevel); = countNormalize (*chIt, stopLevel);
@ -750,8 +747,8 @@ ConstraintTree::jointCountNormalize (
for (j = 0; counts1[i] + counts2[j] != N; j++) ; for (j = 0; counts1[i] + counts2[j] != N; j++) ;
// cout << "joint-count(" << counts1[i] ; // cout << "joint-count(" << counts1[i] ;
// cout << "," << counts2[j] << ")" << endl; // cout << "," << counts2[j] << ")" << endl;
const CTNodes& childs = normCts2[j]->root_->childs(); const CTChilds& childs = normCts2[j]->root_->childs();
for (CTNodes::const_iterator chIt = childs.begin(); for (CTChilds::const_iterator chIt = childs.begin();
chIt != childs.end(); ++ chIt) { chIt != childs.end(); ++ chIt) {
normCts1[i]->root_->addChild (CTNode::copySubtree (*chIt)); normCts1[i]->root_->addChild (CTNode::copySubtree (*chIt));
} }
@ -798,11 +795,11 @@ ConstraintTree::overlap (
const ConstraintTree* ct2, const ConstraintTree* ct2,
unsigned stopLevel) unsigned stopLevel)
{ {
const CTNodes& childs1 = ct1->root_->childs(); const CTChilds& childs1 = ct1->root_->childs();
const CTNodes& childs2 = ct2->root_->childs(); const CTChilds& childs2 = ct2->root_->childs();
for (CTNodes::const_iterator chIt1 = childs1.begin(); for (CTChilds::const_iterator chIt1 = childs1.begin();
chIt1 != childs1.end(); ++ chIt1) { chIt1 != childs1.end(); ++ chIt1) {
for (CTNodes::const_iterator chIt2 = childs2.begin(); for (CTChilds::const_iterator chIt2 = childs2.begin();
chIt2 != childs2.end(); ++ chIt2) { chIt2 != childs2.end(); ++ chIt2) {
if (overlap (*chIt1, *chIt2, stopLevel)) { if (overlap (*chIt1, *chIt2, stopLevel)) {
return true; return true;
@ -824,8 +821,8 @@ ConstraintTree::expand (LogVar X)
for (CTNodes::const_iterator it = nodes.begin(); for (CTNodes::const_iterator it = nodes.begin();
it != nodes.end(); ++ it) { it != nodes.end(); ++ it) {
Symbols symbols; Symbols symbols;
const CTNodes& childs = (*it)->childs(); const CTChilds& childs = (*it)->childs();
for (CTNodes::const_iterator chIt = childs.begin(); for (CTChilds::const_iterator chIt = childs.begin();
chIt != childs.end(); ++ chIt) { chIt != childs.end(); ++ chIt) {
symbols.push_back ((*chIt)->symbol()); symbols.push_back ((*chIt)->symbol());
} }
@ -856,8 +853,8 @@ ConstraintTree::ground (LogVar X)
{ {
moveToTop ({X}); moveToTop ({X});
ConstraintTrees cts; ConstraintTrees cts;
const CTNodes& nodes = root_->childs(); const CTChilds& nodes = root_->childs();
for (CTNodes::const_iterator it = nodes.begin(); for (CTChilds::const_iterator it = nodes.begin();
it != nodes.end(); ++ it) { it != nodes.end(); ++ it) {
CTNode* copy = CTNode::copySubtree (*it); CTNode* copy = CTNode::copySubtree (*it);
copy->setSymbol ((*it)->symbol()); copy->setSymbol ((*it)->symbol());
@ -877,8 +874,8 @@ ConstraintTree::countTuples (const CTNode* n) const
return 1; return 1;
} }
unsigned sum = 0; unsigned sum = 0;
const CTNodes& childs = n->childs(); const CTChilds& childs = n->childs();
for (CTNodes::const_iterator chIt = childs.begin(); for (CTChilds::const_iterator chIt = childs.begin();
chIt != childs.end(); ++ chIt) { chIt != childs.end(); ++ chIt) {
sum += countTuples (*chIt); sum += countTuples (*chIt);
} }
@ -896,7 +893,29 @@ ConstraintTree::getNodesBelow (CTNode* fromHere) const
while (queue.empty() == false) { while (queue.empty() == false) {
CTNode* node = queue.front(); CTNode* node = queue.front();
nodes.push_back (node); nodes.push_back (node);
for (CTNodes::const_iterator chIt = node->childs().begin(); for (CTChilds::const_iterator chIt = node->childs().begin();
chIt != node->childs().end(); ++ chIt) {
queue.push (*chIt);
}
queue.pop();
}
return nodes;
}
CTNodes
ConstraintTree::getLeafsBelow (CTNode* fromHere) const
{
CTNodes nodes;
queue<CTNode*> queue;
queue.push (fromHere);
while (queue.empty() == false) {
CTNode* node = queue.front();
if (node->isLeaf()) {
nodes.push_back (node);
}
for (CTChilds::const_iterator chIt = node->childs().begin();
chIt != node->childs().end(); ++ chIt) { chIt != node->childs().end(); ++ chIt) {
queue.push (*chIt); queue.push (*chIt);
} }
@ -919,7 +938,7 @@ ConstraintTree::getNodesAtLevel (unsigned level) const
if (node->level() == level) { if (node->level() == level) {
nodes.push_back (node); nodes.push_back (node);
} else { } else {
for (CTNodes::const_iterator chIt = node->childs().begin(); for (CTChilds::const_iterator chIt = node->childs().begin();
chIt != node->childs().end(); ++ chIt) { chIt != node->childs().end(); ++ chIt) {
queue.push (*chIt); queue.push (*chIt);
} }
@ -931,6 +950,24 @@ ConstraintTree::getNodesAtLevel (unsigned level) const
void
ConstraintTree::addChildsOnBottom (CTNode* n1, const CTNode* n2)
{
if (n1->isLeaf()) {
for (CTChilds::const_iterator chIt = n2->childs().begin();
chIt != n2->childs().end(); ++ chIt) {
n1->addChild (CTNode::copySubtree (*chIt));
}
} else {
for (CTChilds::const_iterator chIt = n1->childs().begin();
chIt != n1->childs().end(); ++ chIt) {
addChildsOnBottom (*chIt, n2);
}
}
}
void void
ConstraintTree::swapLogVar (LogVar X) ConstraintTree::swapLogVar (LogVar X)
{ {
@ -941,16 +978,16 @@ ConstraintTree::swapLogVar (LogVar X)
const CTNodes& nodes = getNodesAtLevel (pos); const CTNodes& nodes = getNodesAtLevel (pos);
for (CTNodes::const_iterator nodeIt = nodes.begin(); for (CTNodes::const_iterator nodeIt = nodes.begin();
nodeIt != nodes.end(); ++ nodeIt) { nodeIt != nodes.end(); ++ nodeIt) {
CTNodes childsCopy = (*nodeIt)->childs(); CTChilds childsCopy = (*nodeIt)->childs();
(*nodeIt)->removeChilds(); (*nodeIt)->removeChilds();
for (CTNodes::const_iterator ccIt = childsCopy.begin(); for (CTChilds::const_iterator ccIt = childsCopy.begin();
ccIt != childsCopy.end(); ++ ccIt) { ccIt != childsCopy.end(); ++ ccIt) {
const CTNodes& grandsons = (*ccIt)->childs(); const CTChilds& grandsons = (*ccIt)->childs();
for (CTNodes::const_iterator gsIt = grandsons.begin(); for (CTChilds::const_iterator gsIt = grandsons.begin();
gsIt != grandsons.end(); ++ gsIt) { gsIt != grandsons.end(); ++ gsIt) {
CTNode* childCopy = new CTNode (**ccIt); CTNode* childCopy = new CTNode (**ccIt);
const CTNodes& greatGrandsons = (*gsIt)->childs(); const CTChilds& greatGrandsons = (*gsIt)->childs();
for (CTNodes::const_iterator ggsIt = greatGrandsons.begin(); for (CTChilds::const_iterator ggsIt = greatGrandsons.begin();
ggsIt != greatGrandsons.end(); ++ ggsIt) { ggsIt != greatGrandsons.end(); ++ ggsIt) {
childCopy->addChild (*ggsIt, false); childCopy->addChild (*ggsIt, false);
} }
@ -970,27 +1007,22 @@ ConstraintTree::swapLogVar (LogVar X)
bool bool
ConstraintTree::join ( ConstraintTree::join (
CTNode* n, CTNode* currNode,
const Tuple& tuple, const Tuple& tuple,
unsigned currIdx, unsigned currIdx,
CTNode* appendNode) CTNode* appendNode)
{ {
bool tupleFounded = false; bool tupleFounded = false;
if (n->symbol() == tuple[currIdx]) { CTNode tmp (tuple[currIdx], 0);
CTChilds::const_iterator it = currNode->findChild (&tmp);
if (it != currNode->childs().end()) {
if (currIdx == tuple.size() - 1) { if (currIdx == tuple.size() - 1) {
const CTNodes& childs = appendNode->childs(); addChildsOnBottom (currNode, appendNode);
for (CTNodes::const_iterator chIt = childs.begin();
chIt != childs.end(); ++ chIt) {
n->addChild (CTNode::copySubtree (*chIt));
}
return true; return true;
} else {
tupleFounded = join (*it, tuple, currIdx + 1, appendNode);
} }
const CTNodes& childs = n->childs(); }
for (CTNodes::const_iterator chIt = childs.begin();
chIt != childs.end(); ++ chIt) {
tupleFounded |= join (*chIt, tuple, currIdx + 1, appendNode);
}
}
return tupleFounded; return tupleFounded;
} }
@ -1007,13 +1039,13 @@ ConstraintTree::indenticalSubtrees (
return false; return false;
} }
} }
const CTNodes& childs1 = n1->childs(); const CTChilds& childs1 = n1->childs();
const CTNodes& childs2 = n2->childs(); const CTChilds& childs2 = n2->childs();
if (childs1.size() != childs2.size()) { if (childs1.size() != childs2.size()) {
return false; return false;
} }
CTNodes::const_iterator chIt1 = childs1.begin(); CTChilds::const_iterator chIt1 = childs1.begin();
CTNodes::const_iterator chIt2 = childs2.begin(); CTChilds::const_iterator chIt2 = childs2.begin();
while (chIt1 != childs1.end()) { while (chIt1 != childs1.end()) {
if (indenticalSubtrees (*chIt1, *chIt2, true) == false) { if (indenticalSubtrees (*chIt1, *chIt2, true) == false) {
return false; return false;
@ -1051,8 +1083,8 @@ ConstraintTree::getTuples (
} }
} }
const CTNodes& childs = n->childs(); const CTChilds& childs = n->childs();
for (CTNodes::const_iterator chIt = childs.begin(); for (CTChilds::const_iterator chIt = childs.begin();
chIt != childs.end(); ++ chIt) { chIt != childs.end(); ++ chIt) {
getTuples (*chIt, currTuples, stopLevel, tuplesCollected, getTuples (*chIt, currTuples, stopLevel, tuplesCollected,
continuationNodes); continuationNodes);
@ -1090,8 +1122,8 @@ ConstraintTree::countNormalize (
} }
vector<pair<CTNode*, unsigned>> res; vector<pair<CTNode*, unsigned>> res;
const CTNodes& childs = n->childs(); const CTChilds& childs = n->childs();
for (CTNodes::const_iterator chIt = childs.begin(); for (CTChilds::const_iterator chIt = childs.begin();
chIt != childs.end(); ++ chIt) { chIt != childs.end(); ++ chIt) {
const vector<pair<CTNode*, unsigned>>& lowerRes = const vector<pair<CTNode*, unsigned>>& lowerRes =
countNormalize (*chIt, stopLevel); countNormalize (*chIt, stopLevel);
@ -1113,12 +1145,13 @@ ConstraintTree::split (
CTNodes& nodes, CTNodes& nodes,
unsigned stopLevel) unsigned stopLevel)
{ {
CTNodes& childs1 = n1->childs(); CTChilds& childs1 = n1->childs();
CTNodes& childs2 = n2->childs(); CTChilds& childs2 = n2->childs();
for (CTNodes::const_iterator chIt1 = childs1.begin(); CTNodes toRemove;
for (CTChilds::const_iterator chIt1 = childs1.begin();
chIt1 != childs1.end(); ++ chIt1) { chIt1 != childs1.end(); ++ chIt1) {
CTNode* intersectNode = 0; CTNode* intersectNode = 0;
for (CTNodes::const_iterator chIt2 = childs2.begin(); for (CTChilds::const_iterator chIt2 = childs2.begin();
chIt2 != childs2.end(); ++ chIt2) { chIt2 != childs2.end(); ++ chIt2) {
if ((*chIt1)->symbol() == (*chIt2)->symbol()) { if ((*chIt1)->symbol() == (*chIt2)->symbol()) {
intersectNode = *chIt2; intersectNode = *chIt2;
@ -1131,7 +1164,7 @@ ConstraintTree::split (
if ((*chIt1)->level() == stopLevel) { if ((*chIt1)->level() == stopLevel) {
CTNode* newNode = CTNode::copySubtree (*chIt1); CTNode* newNode = CTNode::copySubtree (*chIt1);
nodes.push_back (newNode); nodes.push_back (newNode);
(*chIt1)->setSymbol (Symbol::invalid()); toRemove.push_back (*chIt1);
} else { } else {
CTNodes lowerNodes; CTNodes lowerNodes;
split ((*chIt1), intersectNode, lowerNodes, stopLevel); split ((*chIt1), intersectNode, lowerNodes, stopLevel);
@ -1143,24 +1176,15 @@ ConstraintTree::split (
} }
nodes.push_back (newNode); nodes.push_back (newNode);
} }
if ((*chIt1)->isLeaf()) {
toRemove.push_back (*chIt1);
}
} }
} }
for (CTNodes::const_iterator it = toRemove.begin();
CTNodes::const_iterator chIt = childs1.begin(); it != toRemove.end(); ++ it) {
while (chIt != childs1.end()) { n1->removeAndDeleteChild (*it);
bool inc = true; }
if ((*chIt)->symbol() == Symbol::invalid()) {
n1->removeAndDeleteChild ((*chIt));
inc = false;
} else if ((*chIt)->isLeaf() &&
(*chIt)->level() != stopLevel) {
n1->removeAndDeleteChild ((*chIt));
inc = false;
}
if (inc) {
++ chIt;
}
}
} }
@ -1179,11 +1203,11 @@ ConstraintTree::overlap (
return false; return false;
} }
} }
const CTNodes& childsI = n1->childs(); const CTChilds& childsI = n1->childs();
const CTNodes& childsJ = n2->childs(); const CTChilds& childsJ = n2->childs();
for (CTNodes::const_iterator chIt1 = childsI.begin(); for (CTChilds::const_iterator chIt1 = childsI.begin();
chIt1 != childsI.end(); ++ chIt1) { chIt1 != childsI.end(); ++ chIt1) {
for (CTNodes::const_iterator chIt2 = childsJ.begin(); for (CTChilds::const_iterator chIt2 = childsJ.begin();
chIt2 != childsJ.end(); ++ chIt2) { chIt2 != childsJ.end(); ++ chIt2) {
if (overlap (*chIt1, *chIt2, stopLevel)) { if (overlap (*chIt1, *chIt2, stopLevel)) {
return true; return true;

View File

@ -24,6 +24,7 @@ typedef vector<ConstraintTree*> ConstraintTrees;
class CTNode class CTNode
{ {
public: public:
CTNode (const CTNode& n) : symbol_(n.symbol()), level_(n.level()) { } CTNode (const CTNode& n) : symbol_(n.symbol()), level_(n.level()) { }
CTNode (Symbol s, unsigned l) : symbol_(s) , level_(l) { } CTNode (Symbol s, unsigned l) : symbol_(s) , level_(l) { }
@ -36,9 +37,22 @@ class CTNode
void setSymbol (const Symbol s) { symbol_ = s; } void setSymbol (const Symbol s) { symbol_ = s; }
CTNodes& childs (void) { return childs_; } struct CompareSymbol
{
bool operator() (const CTNode* n1, const CTNode* n2) const
{
return n1->symbol() < n2->symbol();
}
};
const CTNodes& childs (void) const { return childs_; } private:
// typedef set<CTNode*, CompareSymbol> CTChilds_;
typedef SortedVector<CTNode*, CompareSymbol> CTChilds_;
public:
CTChilds_& childs (void) { return childs_; }
const CTChilds_& childs (void) const { return childs_; }
unsigned nrChilds (void) const { return childs_.size(); } unsigned nrChilds (void) const { return childs_.size(); }
@ -46,6 +60,11 @@ class CTNode
bool isLeaf (void) const { return childs_.empty(); } bool isLeaf (void) const { return childs_.empty(); }
CTChilds_::iterator findChild (CTNode* n)
{
return childs_.find (n);
}
void addChild (CTNode*, bool = true); void addChild (CTNode*, bool = true);
void removeChild (CTNode*); void removeChild (CTNode*);
@ -66,13 +85,17 @@ class CTNode
void updateChildLevels (CTNode*, unsigned); void updateChildLevels (CTNode*, unsigned);
Symbol symbol_; Symbol symbol_;
CTNodes childs_; CTChilds_ childs_;
unsigned level_; unsigned level_;
}; };
ostream& operator<< (ostream &out, const CTNode&); ostream& operator<< (ostream &out, const CTNode&);
// typedef set<CTNode*, CTNode::CompareSymbol> CTChilds;
typedef SortedVector<CTNode*, CTNode::CompareSymbol> CTChilds;
class ConstraintTree class ConstraintTree
{ {
public: public:
@ -175,8 +198,12 @@ class ConstraintTree
CTNodes getNodesBelow (CTNode*) const; CTNodes getNodesBelow (CTNode*) const;
CTNodes getLeafsBelow (CTNode*) const;
CTNodes getNodesAtLevel (unsigned) const; CTNodes getNodesAtLevel (unsigned) const;
void addChildsOnBottom (CTNode* n1, const CTNode* n2);
void swapLogVar (LogVar); void swapLogVar (LogVar);
bool join (CTNode*, const Tuple&, unsigned, CTNode*); bool join (CTNode*, const Tuple&, unsigned, CTNode*);