IndexHelp
1 2 3 4 5 6 7 8 9 (V1,V2) = FindPartition() maximal = False while not maximal: P = FindAugmentingPath(V1,V2,M) if P: Augment(P,M) else: maximal = True ShowVertexCover(V1,V2)