Re: Bi-directional and multigraphs

2013-07-03 Thread Avery Ching
You can easily add bi-directional edges. When you load the edge, simply also load the reciprocal edge. I.e. if you add a->b, also add b->a. On 7/2/13 1:11 AM, Pascal Jäger wrote: Hi everyone, I am currently getting my hands on giraph which is why I am trying to implement a maximum flow algo

Bi-directional and multigraphs

2013-07-02 Thread Pascal Jäger
Hi everyone, I am currently getting my hands on giraph which is why I am trying to implement a maximum flow algorithm originally designed for MapReduce. The algorithm requires bi-directional edges. * Are bi-directional edges supported in giraph? * Where would I find them? Thanks Pascal