Open vvhof opened 9 years ago
In the example of GCD, the DUGenerator might not add all DU chains existing.
Consider the following example
while(n != m) { if (n > m) { n -= m; } else { m -= n; } } return n;
we might miss DU chains, since finish the branch "n-=m" the moment we found it.
In the example of GCD, the DUGenerator might not add all DU chains existing.
Consider the following example
we might miss DU chains, since finish the branch "n-=m" the moment we found it.