From 7523576a702ea13343102202b00d3a1adc9b93fb Mon Sep 17 00:00:00 2001 From: troonmel Date: Tue, 14 Nov 2023 12:42:16 -0500 Subject: [PATCH] temporary rollback for expansion algorithms --- nfvsmotifs/_sd_algorithms/expand_source_SCCs.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nfvsmotifs/_sd_algorithms/expand_source_SCCs.py b/nfvsmotifs/_sd_algorithms/expand_source_SCCs.py index ef3e13e3..f5f84fba 100644 --- a/nfvsmotifs/_sd_algorithms/expand_source_SCCs.py +++ b/nfvsmotifs/_sd_algorithms/expand_source_SCCs.py @@ -127,7 +127,9 @@ def expand_source_SCCs(sd: SuccessionDiagram, assert sd.G.nodes[node_id]["expanded"] == False # expand nodes from here assert sd.G.nodes[node_id]["attractors"] == None # check attractors from here - expander(sd, node_id) + # restore this once we allow all expansion algorithms to expand from a node + # expander(sd, node_id) + sd.expand_bfs(node_id) return True