DriveHQ Start Menu
Cloud Drive Mapping
Folder Sync
Cloud Backup
True Drop Box
FTP/SFTP Hosting
Group Account
DriveHQ Start Menu
Online File Server
My Storage
|
Manage Shares
|
Publishes
|
Drop Boxes
|
Group Account
WebDAV Drive Mapping
Cloud Drive Home
|
WebDAV Guide
|
Drive Mapping Tool
|
Drive Mapping URL
Complete Data Backup
Backup Guide
|
Online Backup Tool
|
Cloud-to-Cloud Backup
FTP, Email & Web Service
FTP Home
|
FTP Hosting FAQ
|
Email Hosting
|
EmailManager
|
Web Hosting
Help & Resources
About
|
Enterprise Service
|
Partnership
|
Comparisons
|
Support
Quick Links
Security and Privacy
Download Software
Service Manual
Use Cases
Group Account
Online Help
Blog
Contact
Cloud Surveillance
Sign Up
Login
Features
Business Features
Online File Server
FTP Hosting
Cloud Drive Mapping
Cloud File Backup
Email Backup & Hosting
Cloud File Sharing
Folder Synchronization
Group Management
True Drop Box
Full-text Search
AD Integration/SSO
Mobile Access
IP Camera & DVR Solution
More...
Personal Features
Personal Cloud Drive
Backup All Devices
Mobile APPs
Personal Web Hosting
Sub-Account (for Kids)
Home/PC/Kids Monitoring
More...
Software
DriveHQ Drive Mapping Tool
DriveHQ FileManager
DriveHQ Online Backup
DriveHQ Mobile Apps
Pricing
Business Plans & Pricing
Personal Plans & Pricing
Price Comparison with Others
Feature Comparison with Others
Install Mobile App
Sign up
Creating account...
Invalid character in username! Only 0-9, a-z, A-Z, _, -, . allowed.
Username is required!
Invalid email address!
E-mail is required!
Password is required!
Password is invalid!
Password and confirmation do not match.
Confirm password is required!
I accept
Membership Agreement
Please read the Membership Agreement and check "I accept"!
Free Quick Sign-up
Sign-up Page
Log in
Signing in...
Username or e-mail address is required!
Password is required!
Keep me logged in
Quick Login
Forgot Password
Up
Upload
Download
Share
Publish
New Folder
New File
Copy
Cut
Delete
Paste
Rate
Upgrade
Rotate
Effect
Edit
Slide
History
//======================================================================= // Copyright 1997, 1998, 1999, 2000 University of Notre Dame. // Copyright (C) Vladimir Prus 2003 // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek // // Distributed under 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) //======================================================================= #ifndef BOOST_GRAPH_RANDOM_HPP #define BOOST_GRAPH_RANDOM_HPP #include
#include
#include
#include
#include
#include
#include
#include
#include
#include
namespace boost { // grab a random vertex from the graph's vertex set template
typename graph_traits
::vertex_descriptor random_vertex(Graph& g, RandomNumGen& gen) { if (num_vertices(g) > 1) { #if BOOST_WORKAROUND( __BORLANDC__, BOOST_TESTED_AT(0x581)) std::size_t n = std::random( num_vertices(g) ); #else uniform_int<> distrib(0, num_vertices(g)-1); variate_generator
> rand_gen(gen, distrib); std::size_t n = rand_gen(); #endif typename graph_traits
::vertex_iterator i = vertices(g).first; while (n-- > 0) ++i; // std::advance not VC++ portable return *i; } else return *vertices(g).first; } template
typename graph_traits
::edge_descriptor random_edge(Graph& g, RandomNumGen& gen) { if (num_edges(g) > 1) { #if BOOST_WORKAROUND( __BORLANDC__, BOOST_TESTED_AT(0x581)) typename graph_traits
::edges_size_type n = std::random( num_edges(g) ); #else uniform_int<> distrib(0, num_edges(g)-1); variate_generator
> rand_gen(gen, distrib); typename graph_traits
::edges_size_type n = rand_gen(); #endif typename graph_traits
::edge_iterator i = edges(g).first; while (n-- > 0) ++i; // std::advance not VC++ portable return *i; } else return *edges(g).first; } namespace detail { class dummy_property_copier { public: template
void operator()(const V1&, const V2&) const {} }; } template
void generate_random_graph1 (MutableGraph& g, typename graph_traits
::vertices_size_type V, typename graph_traits
::vertices_size_type E, RandNumGen& gen, bool allow_parallel = true, bool self_edges = false) { typedef graph_traits
Traits; typedef typename Traits::vertices_size_type v_size_t; typedef typename Traits::edges_size_type e_size_t; typedef typename Traits::vertex_descriptor vertex_descriptor; // When parallel edges are not allowed, we create a new graph which // does not allow parallel edges, construct it and copy back. // This is not efficient if 'g' already disallow parallel edges, // but that's task for later. if (!allow_parallel) { typedef typename boost::graph_traits
::directed_category dir; typedef typename mpl::if_
, directedS, undirectedS>::type select; adjacency_list
g2; generate_random_graph1(g2, V, E, gen, true, self_edges); copy_graph(g2, g, vertex_copy(detail::dummy_property_copier()). edge_copy(detail::dummy_property_copier())); } else { for (v_size_t i = 0; i < V; ++i) add_vertex(g); for (e_size_t j = 0; j < E; ++j) { vertex_descriptor a = random_vertex(g, gen), b; do { b = random_vertex(g, gen); } while (self_edges == false && a == b); add_edge(a, b, g); } } } template
void generate_random_graph (MutableGraph& g, typename graph_traits
::vertices_size_type V, typename graph_traits
::vertices_size_type E, RandNumGen& gen, bool allow_parallel = true, bool self_edges = false) { generate_random_graph1(g, V, E, gen, allow_parallel, self_edges); } template
void generate_random_graph (MutableGraph& g, typename graph_traits
::vertices_size_type V, typename graph_traits
::vertices_size_type E, RandNumGen& gen, VertexOutputIterator vertex_out, EdgeOutputIterator edge_out, bool self_edges = false) { typedef graph_traits
Traits; typedef typename Traits::vertices_size_type v_size_t; typedef typename Traits::edges_size_type e_size_t; typedef typename Traits::vertex_descriptor vertex_t; typedef typename Traits::edge_descriptor edge_t; for (v_size_t i = 0; i < V; ++i) *vertex_out++ = add_vertex(g); for (e_size_t j = 0; j < E; ++j) { vertex_t a = random_vertex(g, gen), b; do { b = random_vertex(g, gen); } while (self_edges == false && a == b); edge_t e; bool inserted; tie(e, inserted) = add_edge(a, b, g); if (inserted) *edge_out++ = std::make_pair(source(e, g), target(e, g)); } } namespace detail { template
void randomize_property(G& g, RandomGenerator& rg, Property, vertex_property_tag) { typename property_map
::type pm = get(Property(), g); typename graph_traits
::vertex_iterator vi, ve; for (tie(vi, ve) = vertices(g); vi != ve; ++vi) { pm[*vi] = rg(); } } template
void randomize_property(G& g, RandomGenerator& rg, Property, edge_property_tag) { typename property_map
::type pm = get(Property(), g); typename graph_traits
::edge_iterator ei, ee; for (tie(ei, ee) = edges(g); ei != ee; ++ei) { pm[*ei] = rg(); } } } template
void randomize_property(G& g, RandomGenerator& rg) { detail::randomize_property (g, rg, Property(), typename property_kind
::type()); } } #endif
random.hpp
Page URL
File URL
Prev
73/95
Next
Download
( 6 KB )
Note: The DriveHQ service banners will NOT be displayed if the file owner is a paid member.
Comments
Total ratings:
0
Average rating:
Not Rated
Would you like to comment?
Join DriveHQ
for a free account, or
Logon
if you are already a member.