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 closure #258

Open
magwas opened this issue Mar 15, 2019 · 4 comments
Open

transitive closure #258

magwas opened this issue Mar 15, 2019 · 4 comments

Comments

@magwas
Copy link
Member

magwas commented Mar 15, 2019

Behaviour: Schulze method/transitive closure;implements the Floyd-Warshall algorithm

@tested_feature("Schulze method")

@tested_operation("transitive closure")

@tested_behaviour("implements the Floyd-Warshall algorithm")

for each i, j, k m[i,j] = max(m[i,j], min(m[i,k],m[k,j]) where max and min uses compareBeats for comparison

Deviation in model

@szirbucz
Copy link
Contributor

szirbucz

@valentinbujdoso
Copy link
Contributor

my issues block this issue. Im trying to hurry up.

@magwas
Copy link
Member Author

magwas commented Mar 28, 2019

How do you block it? compareBeats is already implemented (minus the tie case, which have deliberately left out to return whatever is best for this).

@valentinbujdoso
Copy link
Contributor

Maybe yes, you are right.

szirbucz added a commit to szirbucz/PDEngine that referenced this issue Mar 29, 2019
magwas pushed a commit that referenced this issue Mar 29, 2019
* Implement the Floyd Warshall algorithm #258
magwas pushed a commit that referenced this issue Apr 11, 2019
* Implement the Floyd Warshall algorithm #258
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants