RvltALGORITHM 1
© 2025 REVOLT V.1.0
Algorithm 1: Selection of the Blue Cluster in RvltGRAPH
Algorithm Description
textAlgorithm 1 - Selection of a Blue Set
Input: G – an RvltGRAPH, k – the propagation parameter.
Output: BLUE_k(G) – the dense-set of G.
Function CALC-BLUE(G, k):
if B == genesis then
return {genesis}
for B in tips(G) do
BLUE_k(B) ← CALC-BLUE(past(B), k)
Bmax ← arg max {|BLUE_k(B)| : B in tips(G)} (break ties arbitrarily)
BLUE_k(G) ← BLUE_k(Bmax) ∪ {Bmax}
for B in anticone(Bmax) in some topological ordering do
if |anticone(B) ∩ BLUE_k(G)| ≤ k then
add B to BLUE_k(G)
return BLUE_k(G)Detailed Explanation

Conclusion
Last updated