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

Transitive reduction failure #7

Open
snowleopard opened this issue Mar 26, 2016 · 0 comments
Open

Transitive reduction failure #7

snowleopard opened this issue Mar 26, 2016 · 0 comments
Assignees

Comments

@snowleopard
Copy link
Member

The following event log triggers a bug in transitive reduction of the produced partial orders:

X a Y1 Y2 Y3 b c Z
X b c Y1 Y2 Y3 a Z
X Y1 Y2 Y3 b a c Z
X Y1 Y2 Y3 b c a Z

The following two partial orders are produced:

g1 = X -> Y1 + X -> a + X -> b + X -> c + Y1 -> Y2 + Y2 -> Y3 + Y3 -> Z + a -> Z + b -> c + c -> Z
g2 = X -> Y1 + X -> a + X -> b + Y1 -> Y2 + Y2 -> Y3 + Y3 -> Z + a -> Z + b -> c + c -> Z

Note, the only difference between g1 and g2 is the arc X -> c which is clearly transitive, as both X -> b and b -> c are also present.

The correct result should be just a single transitively reduced partial order g2.

@snowleopard snowleopard self-assigned this Mar 26, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant