remove_edge_if_bidir.expected 278 B

12345678910111213141516171819
  1. original graph:
  2. 0 --> 3 2 3
  3. 1 --> 3
  4. 2 --> 0
  5. 3 --> 2
  6. 1(0,3) 2(0,2) 3(0,3) 4(1,3) 5(2,0) 6(3,2)
  7. removing edges connecting 0 to 3
  8. 0 --> 2
  9. 1 --> 3
  10. 2 --> 0
  11. 3 --> 2
  12. 2(0,2) 4(1,3) 5(2,0) 6(3,2)
  13. removing edges with weight greater than 3
  14. 0 --> 2
  15. 1 -->
  16. 2 -->
  17. 3 -->
  18. 2(0,2)