Skip to content

Commit b7b9ada

Browse files
committed
Removed test in exact_mif_v3
1 parent c77617d commit b7b9ada

1 file changed

Lines changed: 0 additions & 21 deletions

File tree

exact_mif_v3.py

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -299,24 +299,3 @@ def get_decycling_number_mif_v3(G):
299299
return 0
300300

301301
return len(G.nodes) - get_mif_len(G, set(), None)
302-
303-
304-
if __name__ == "__main__":
305-
nt = nx.Graph()
306-
nt.add_nodes_from(["V1", "V2", "V3", "V4", "V5", "V6", "V7", "V8"])
307-
nt.add_edges_from(
308-
[
309-
("V1", "V2"),
310-
("V1", "V3"),
311-
("V2", "V4"),
312-
("V4", "V5"),
313-
("V3", "V5"),
314-
("V4", "V6"),
315-
("V6", "V7"),
316-
("V5", "V7"),
317-
("V7", "V8"),
318-
("V6", "V8"),
319-
]
320-
)
321-
322-
print(get_decycling_number_mif_v3(nt))

0 commit comments

Comments
 (0)