Server IP : 104.21.38.3 / Your IP : 172.70.189.48 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/boost/boost_1_59_0/boost/graph/parallel/ |
Upload File : |
// Copyright 2004 The Trustees of Indiana University. // Use, modification and distribution is subject to the Boost Software // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // Authors: Douglas Gregor // Andrew Lumsdaine #ifndef BOOST_GRAPH_PARALLEL_PROPERTIES_HPP #define BOOST_GRAPH_PARALLEL_PROPERTIES_HPP #ifndef BOOST_GRAPH_USE_MPI #error "Parallel BGL files should not be included unless <boost/graph/use_mpi.hpp> has been included" #endif #include <boost/graph/properties.hpp> #include <boost/property_map/parallel/distributed_property_map.hpp> namespace boost { /*************************************************************************** * Property map reduction operations ***************************************************************************/ /** * Metafunction that produces a reduction operation for the given * property. The default behavior merely forwards to @ref * basic_reduce, but it is expected that this class template will be * specified for important properties. */ template<typename Property> struct property_reduce { template<typename Value> class apply : public parallel::basic_reduce<Value> {}; }; /** * Reduction of vertex colors can only darken, not lighten, the * color. Black cannot turn black, grey can only turn black, and * white can be changed to either color. The default color is white. */ template<> struct property_reduce<vertex_color_t> { template<typename Color> class apply { typedef color_traits<Color> traits; public: BOOST_STATIC_CONSTANT(bool, non_default_resolver = true); template<typename Key> Color operator()(const Key&) const { return traits::white(); } template<typename Key> Color operator()(const Key&, Color local, Color remote) const { if (local == traits::white()) return remote; else if (remote == traits::black()) return remote; else return local; } }; }; /** * Reduction of a distance always takes the shorter distance. The * default distance value is the maximum value for the data type. */ template<> struct property_reduce<vertex_distance_t> { template<typename T> class apply { public: BOOST_STATIC_CONSTANT(bool, non_default_resolver = true); template<typename Key> T operator()(const Key&) const { return (std::numeric_limits<T>::max)(); } template<typename Key> T operator()(const Key&, T x, T y) const { return x < y? x : y; } }; }; template<> struct property_reduce<vertex_predecessor_t> { template<typename T> class apply { public: BOOST_STATIC_CONSTANT(bool, non_default_resolver = true); T operator()(T key) const { return key; } T operator()(T key, T, T y) const { return y; } }; }; template<typename Property, typename PropertyMap> inline void set_property_map_role(Property p, PropertyMap pm) { typedef typename property_traits<PropertyMap>::value_type value_type; typedef property_reduce<Property> property_red; typedef typename property_red::template apply<value_type> reduce; pm.set_reduce(reduce()); } } // end namespace boost #endif // BOOST_GRAPH_PARALLEL_PROPERTIES_HPP