Questions tagged [fastflow]

A parallel programming framework for multi-core platforms.

FastFlow is a parallel programming framework for multi-core platforms based upon non-blocking lock-free/fence-free synchronization mechanisms.

2 questions
0
votes
2 answers

What does the level graph in Dinic's algorithm represent?

I understand what a residual graph is. But what does a level graph mean? http://en.wikipedia.org/wiki/Dinic%27s_algorithm
0
votes
0 answers

fastflow simple test may get memory leak

I have tested fastflow in g++ 4.4.6 recently , the following is quite a simple test : using namespace ff ; int g1=0 ; class Stage1 : public ff_node{ public : void *svc(void *task){ g1++ ; if(g1 >= 10000) { …
barfatchen
  • 1,630
  • 2
  • 24
  • 48