Skip to content
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/leaderlist.ml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ struct

(* predicate to determine if a node is a leader *)
let is_leader n =
if n = root then true (* the root node is always a leader *)
if G.V.equal n root then true (* the root node is always a leader *)
else
match G.pred g n with
| [] ->
Expand Down