Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. if column + 1 < width:
  2. g.add_edge(nodes[row, column], nodes[row, column + 1], mu, mu)
  3.  
  4. if row + 1 < height:
  5. g.add_edge(nodes[row, column], nodes[row + 1, column], mu, mu)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement