Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/generic/include/boost/graph/distributed/named_graph.hpp @ 101:c530137014c0
Update Boost headers (1.58.0)
author | Chris Cannam |
---|---|
date | Mon, 07 Sep 2015 11:12:49 +0100 |
parents | 2665513ce2d3 |
children |
comparison
equal
deleted
inserted
replaced
100:793467b5e61c | 101:c530137014c0 |
---|---|
342 : self(self), name(name), committed(false) { } | 342 : self(self), name(name), committed(false) { } |
343 | 343 |
344 /// Transfer responsibility for adding the vertex from the source of | 344 /// Transfer responsibility for adding the vertex from the source of |
345 /// the copy to the newly-constructed opbject. | 345 /// the copy to the newly-constructed opbject. |
346 lazy_add_vertex(const lazy_add_vertex& other) | 346 lazy_add_vertex(const lazy_add_vertex& other) |
347 : self(self), name(other.name), committed(other.committed) | 347 : self(other.self), name(other.name), committed(other.committed) |
348 { | 348 { |
349 other.committed = true; | 349 other.committed = true; |
350 } | 350 } |
351 | 351 |
352 /// If the vertex has not been added yet, add it | 352 /// If the vertex has not been added yet, add it |
802 } | 802 } |
803 | 803 |
804 /// Construct the named_graph with a particular process group | 804 /// Construct the named_graph with a particular process group |
805 template<BGL_NAMED_GRAPH_PARAMS> | 805 template<BGL_NAMED_GRAPH_PARAMS> |
806 BGL_NAMED_GRAPH::named_graph(const process_group_type& pg) | 806 BGL_NAMED_GRAPH::named_graph(const process_group_type& pg) |
807 : process_group_(pg, parallel::attach_distributed_object()), | 807 : process_group_(pg, boost::parallel::attach_distributed_object()), |
808 distribution_(pg) | 808 distribution_(pg) |
809 { | 809 { |
810 setup_triggers(); | 810 setup_triggers(); |
811 } | 811 } |
812 | 812 |
813 /// Construct the named_graph mixin with a particular process group | 813 /// Construct the named_graph mixin with a particular process group |
814 /// and distribution function | 814 /// and distribution function |
815 template<BGL_NAMED_GRAPH_PARAMS> | 815 template<BGL_NAMED_GRAPH_PARAMS> |
816 BGL_NAMED_GRAPH::named_graph(const process_group_type& pg, | 816 BGL_NAMED_GRAPH::named_graph(const process_group_type& pg, |
817 const base_distribution_type& distribution) | 817 const base_distribution_type& distribution) |
818 : process_group_(pg, parallel::attach_distributed_object()), | 818 : process_group_(pg, boost::parallel::attach_distributed_object()), |
819 distribution_(pg, distribution) | 819 distribution_(pg, distribution) |
820 { | 820 { |
821 setup_triggers(); | 821 setup_triggers(); |
822 } | 822 } |
823 | 823 |