Use a Graph Library/Node Network Library or Write My Own?

后端 未结 9 1845
逝去的感伤
逝去的感伤 2020-12-23 22:23

I\'m trying to decide between going with a pre-made graph/node network library or to roll my own.

I\'m implementing some graph search algorithms which might require

9条回答
  •  天涯浪人
    2020-12-23 22:47

    I use the BGL very much, but what disturbs me with BGL is the lack of basic algorithms like edge and vertex connectivity, min cost flow and, general maximum weight perfect matching, just to name those which I miss the most.

    LEMON offers all of that and also has a simpler syntax, what bugs me with LEMON is the installation and compilation problems on WINDOWS platforms, but I will probably switch to LEMON despite those problems.

提交回复
热议问题