#ifndef HORUS_CONSTRAINTTREE_H #define HORUS_CONSTRAINTTREE_H #include #include #include #include #include "TinySet.h" #include "LiftedUtils.h" using namespace std; class CTNode; typedef vector CTNodes; class ConstraintTree; typedef vector ConstraintTrees; class CTNode { public: struct CompareSymbol { bool operator() (const CTNode* n1, const CTNode* n2) const { return n1->symbol() < n2->symbol(); } }; private: typedef TinySet CTChilds_; public: CTNode (const CTNode& n, const CTChilds_& chs = CTChilds_()) : symbol_(n.symbol()), childs_(chs), level_(n.level()) { } CTNode (Symbol s, unsigned l, const CTChilds_& chs = CTChilds_()) : symbol_(s), childs_(chs), level_(l) { } unsigned level (void) const { return level_; } void setLevel (unsigned level) { level_ = level; } Symbol symbol (void) const { return symbol_; } void setSymbol (const Symbol s) { symbol_ = s; } public: CTChilds_& childs (void) { return childs_; } const CTChilds_& childs (void) const { return childs_; } size_t nrChilds (void) const { return childs_.size(); } bool isRoot (void) const { return level_ == 0; } bool isLeaf (void) const { return childs_.empty(); } CTChilds_::iterator findSymbol (Symbol symb) { CTNode tmp (symb, 0); return childs_.find (&tmp); } void mergeSubtree (CTNode*, bool = true); void removeChild (CTNode*); void removeChilds (void); void removeAndDeleteChild (CTNode*); void removeAndDeleteAllChilds (void); SymbolSet childSymbols (void) const; static CTNode* copySubtree (const CTNode*); static void deleteSubtree (CTNode*); private: void updateChildLevels (CTNode*, unsigned); Symbol symbol_; CTChilds_ childs_; unsigned level_; }; ostream& operator<< (ostream &out, const CTNode&); typedef TinySet CTChilds; class ConstraintTree { public: ConstraintTree (unsigned); ConstraintTree (const LogVars&); ConstraintTree (const LogVars&, const Tuples&); ConstraintTree (const ConstraintTree&); ConstraintTree (const CTChilds& rootChilds, const LogVars& logVars) : root_(new CTNode (0, 0, rootChilds)), logVars_(logVars), logVarSet_(logVars) { } ~ConstraintTree (void); CTNode* root (void) const { return root_; } bool empty (void) const { return root_->childs().empty(); } const LogVars& logVars (void) const { assert (LogVarSet (logVars_) == logVarSet_); return logVars_; } const LogVarSet& logVarSet (void) const { assert (LogVarSet (logVars_) == logVarSet_); return logVarSet_; } size_t nrLogVars (void) const { return logVars_.size(); assert (LogVarSet (logVars_) == logVarSet_); } void addTuple (const Tuple&); bool containsTuple (const Tuple&); void moveToTop (const LogVars&); void moveToBottom (const LogVars&); void join (ConstraintTree*, bool oneTwoOne = false); unsigned getLevel (LogVar) const; void rename (LogVar, LogVar); void applySubstitution (const Substitution&); void project (const LogVarSet&); void remove (const LogVarSet&); bool isSingleton (LogVar); LogVarSet singletons (void); TupleSet tupleSet (unsigned = 0) const; TupleSet tupleSet (const LogVars&); unsigned size (void) const; unsigned nrSymbols (LogVar); void exportToGraphViz (const char*, bool = false) const; bool isCountNormalized (const LogVarSet&); unsigned getConditionalCount (const LogVarSet&); TinySet getConditionalCounts (const LogVarSet&); bool isCartesianProduct (const LogVarSet&); std::pair split (const Tuple&); std::pair split ( const LogVars&, ConstraintTree*, const LogVars&); ConstraintTrees countNormalize (const LogVarSet&); ConstraintTrees jointCountNormalize ( ConstraintTree*, ConstraintTree*, LogVar, LogVar, LogVar); LogVars expand (LogVar); ConstraintTrees ground (LogVar); void copyLogVar (LogVar,LogVar); private: unsigned countTuples (const CTNode*) const; CTNodes getNodesBelow (CTNode*) const; CTNodes getNodesAtLevel (unsigned) const; unsigned nrNodes (const CTNode* n) const; void appendOnBottom (CTNode* n1, const CTChilds&); void swapLogVar (LogVar); bool join (CTNode*, const Tuple&, size_t, CTNode*); void getTuples (CTNode*, Tuples, unsigned, Tuples&, CTNodes&) const; vector> countNormalize ( const CTNode*, unsigned); static void split ( CTNode*, CTNode*, CTChilds&, CTChilds&, unsigned); CTNode* root_; LogVars logVars_; LogVarSet logVarSet_; }; #endif // HORUS_CONSTRAINTTREE_H