Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not using all DU Chains #10

Open
vvhof opened this issue Mar 9, 2015 · 0 comments
Open

Not using all DU Chains #10

vvhof opened this issue Mar 9, 2015 · 0 comments
Labels

Comments

@vvhof
Copy link
Member

vvhof commented Mar 9, 2015

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant