Skip to content

Commit

Permalink
temporary rollback for expansion algorithms
Browse files Browse the repository at this point in the history
  • Loading branch information
troonmel committed Nov 14, 2023
1 parent 4fae0fe commit 7523576
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nfvsmotifs/_sd_algorithms/expand_source_SCCs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 7523576

Please sign in to comment.