9 const int fXVariability; ///< Extended Variability of the expression
10 int fOccurences[4]; ///< Occurences count according to Contexts
11 bool fMultiOcc; ///< True when exp has multiple occ. or occ. in higher ctxt
12 bool fOutDelayOcc; ///< True when exp has at least one occ. outside a delay
13 int fMinDelay; ///< Minimal fix delay usage
14 int fMaxDelay; ///< Maximal fix delay usage
17 Occurences(int v, int r);
19 Occurences* incOccurences(int v, int r, int d); ///< inc occurences in context v,r,d
21 bool hasMultiOccurences() const; ///< true if multiple occurences or occ. in higher ctxt
22 bool hasOutDelayOccurences() const; ///< true if has occurences outside a a delay
23 int getMaxDelay() const; ///< return the maximal delay collected
24 int getMinDelay() const; ///< return the minimal delay collected
29 * Occurences Markup of a root tree. First create an OccMarkup om,
30 * second om.mark(root) then om.retrieve(subtree)
34 Tree fRootTree; ///< occurences computed within this tree
35 Tree fPropKey; ///< key used to store occurences property
37 void incOcc (Tree env, int v, int r, int d, Tree t); ///< inc the occurence of t in context v,r
38 Occurences* getOcc (Tree t); ///< get Occurences property of t or null
39 void setOcc (Tree t, Occurences* occ); ///< set Occurences property of t
42 void mark(Tree root); ///< start markup of root tree with new unique key
43 Occurences* retrieve(Tree t); ///< occurences of subtree t within root tree