-
Notifications
You must be signed in to change notification settings - Fork 12
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
Labels
Comments
szirbucz |
my issues block this issue. Im trying to hurry up. |
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). |
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
magwas
pushed a commit
that referenced
this issue
Apr 11, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
The text was updated successfully, but these errors were encountered: