User Tools

Site Tools


Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Last revision Both sides next revision
ffnamespace:tutorial [2015/09/08 15:02]
torquati
ffnamespace:tutorial [2015/09/08 15:06]
torquati
Line 73: Line 73:
  
 int main() { int main() {
-    std::​vector<​std::​unique_ptr<​ff_node>​ > W = {      ​// the farm has 2 workers +    std::​vector<​std::​unique_ptr<​ff_node>​ > W
-        make_unique<​thirdStage>​(), +    ​// the farm has 2 workers 
-        make_unique<​thirdStage>​()  +    ​W.push_back( ​make_unique<​thirdStage>​()); 
-    ​}; +    ​W.push_back( ​make_unique<​thirdStage>​()); 
 +    ​
     ff_Pipe<>​ pipe(make_unique<​firstStage>​(),​     ff_Pipe<>​ pipe(make_unique<​firstStage>​(),​
                    ​make_unique<​ff_node_F<​fftask_t>​ >​(secondStage),​                    ​make_unique<​ff_node_F<​fftask_t>​ >​(secondStage),​
-                   ​make_unique<​ff_Farm<​fftask_f> >​(std::​move(W))+                   ​make_unique<​ff_Farm<​fftask_t> >​(std::​move(W))
                    );                    );
     if (pipe.run_and_wait_end()<​0) error("​running pipe"​);​     if (pipe.run_and_wait_end()<​0) error("​running pipe"​);​
ffnamespace/tutorial.txt · Last modified: 2015/09/08 16:52 by torquati