Exemple #1
0
 /** Resolve the occurence of variables in a Term */
 long resolveTerm(long count) {
   Term tt = getTerm();
   if (tt != this) {
     return tt.resolveTerm(count);
   } else {
     timestamp = count;
     return count++;
   }
 }