Exemplo n.º 1
0
def fvs_via_ic_dec(g: MultiGraph, k: int) -> set:
    ic = IterativeCompression()
    result = ic.get_fbvs_max_size(g, k)
    return result
Exemplo n.º 2
0
def fvs_via_ic_dec(g: MultiGraph, k: int) -> set:
    ic = IterativeCompression()
    result = ic.get_fbvs_max_size(g, k)
    return result
Exemplo n.º 3
0
def fvs_via_ic_opt(g: MultiGraph, k: int) -> set:
    ic = IterativeCompression()
    result = ic.get_fbvs(g)
    return result
Exemplo n.º 4
0
def fvs_via_ic_opt(g: MultiGraph, k: int) -> set:
    ic = IterativeCompression()
    result = ic.get_fbvs(g)
    return result