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