Skip to content

Commit

Permalink
comment out assertions that new version equal old version
Browse files Browse the repository at this point in the history
  • Loading branch information
stivalaa committed Aug 30, 2022
1 parent 070b60d commit 6037bc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/changeStatisticsALAAMbipartite.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,6 @@ def changeBipartiteFourCycle2(mode, G, A, i):
[(twoPathCount := G.twoPaths(i,v)) * (twoPathCount - 1) / 2 for
v in G.nodeModeIterator(mode) if A[v] == 1]
) if G.bipartite_node_mode(i) == mode else 0
delta_OLD = changeBipartiteFourCycle2_OLD(mode, G, A, i)
assert delta == delta_OLD
# delta_OLD = changeBipartiteFourCycle2_OLD(mode, G, A, i)
# assert delta == delta_OLD
return delta

0 comments on commit 6037bc9

Please sign in to comment.