Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix static method without static decorator
  • Loading branch information
Hasenn committed Sep 13, 2020
commit d6dd098b7ddc8cadb89f61d4d3f142d1a6327272
1 change: 1 addition & 0 deletions graphs/minimum_spanning_tree_boruvka.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ def union(self, item1, item2):
self.parent[root2] = root1
return root1

@staticmethod
def boruvka_mst(graph):
"""
Implementation of Boruvka's algorithm
Expand Down