DistributedGraph.html 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <meta name="generator" content="Docutils 0.6: http://docutils.sourceforge.net/" />
  7. <title>Parallel BGL Concept Distributed Graph</title>
  8. <link rel="stylesheet" href="../../../../rst.css" type="text/css" />
  9. </head>
  10. <body>
  11. <div class="document" id="logo-concept-distributed-graph">
  12. <h1 class="title"><a class="reference external" href="http://www.osl.iu.edu/research/pbgl"><img align="middle" alt="Parallel BGL" class="align-middle" src="pbgl-logo.png" /></a> Concept Distributed Graph</h1>
  13. <!-- Copyright (C) 2004-2008 The Trustees of Indiana University.
  14. Use, modification and distribution is subject to the Boost Software
  15. License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  16. http://www.boost.org/LICENSE_1_0.txt) -->
  17. <div class="contents topic" id="contents">
  18. <p class="topic-title first">Contents</p>
  19. <ul class="simple">
  20. <li><a class="reference internal" href="#description" id="id1">Description</a></li>
  21. <li><a class="reference internal" href="#notation" id="id2">Notation</a></li>
  22. <li><a class="reference internal" href="#refinement-of" id="id3">Refinement of</a></li>
  23. <li><a class="reference internal" href="#associated-types" id="id4">Associated types</a></li>
  24. <li><a class="reference internal" href="#models" id="id5">Models</a></li>
  25. </ul>
  26. </div>
  27. <div class="section" id="description">
  28. <h1><a class="toc-backref" href="#id1">Description</a></h1>
  29. <p>A Distributed Graph is a graph whose vertices or edges are
  30. distributed across multiple processes or address spaces. The
  31. descriptors of a Distributed Graph must model the <a class="reference external" href="GlobalDescriptor.html">Global
  32. Descriptor</a> concept.</p>
  33. </div>
  34. <div class="section" id="notation">
  35. <h1><a class="toc-backref" href="#id2">Notation</a></h1>
  36. <dl class="docutils">
  37. <dt>G</dt>
  38. <dd>A type that models the Distributed Graph concept.</dd>
  39. </dl>
  40. </div>
  41. <div class="section" id="refinement-of">
  42. <h1><a class="toc-backref" href="#id3">Refinement of</a></h1>
  43. <blockquote>
  44. <ul class="simple">
  45. <li><a class="reference external" href="http://www.boost.org/libs/graph/doc/Graph.html">Graph</a></li>
  46. </ul>
  47. </blockquote>
  48. </div>
  49. <div class="section" id="associated-types">
  50. <h1><a class="toc-backref" href="#id4">Associated types</a></h1>
  51. <table border="1" class="docutils">
  52. <colgroup>
  53. <col width="18%" />
  54. <col width="44%" />
  55. <col width="38%" />
  56. </colgroup>
  57. <tbody valign="top">
  58. <tr><td>Vertex
  59. descriptor type</td>
  60. <td><tt class="docutils literal"><span class="pre">graph_traits&lt;G&gt;::vertex_descriptor</span></tt></td>
  61. <td>Must model the
  62. <a class="reference external" href="GlobalDescriptor.html">Global Descriptor</a> concept.</td>
  63. </tr>
  64. <tr><td>Edge
  65. descriptor type</td>
  66. <td><tt class="docutils literal"><span class="pre">graph_traits&lt;G&gt;::edge_descriptor</span></tt></td>
  67. <td>Must model the
  68. <a class="reference external" href="GlobalDescriptor.html">Global Descriptor</a> concept.</td>
  69. </tr>
  70. </tbody>
  71. </table>
  72. </div>
  73. <div class="section" id="models">
  74. <h1><a class="toc-backref" href="#id5">Models</a></h1>
  75. <blockquote>
  76. <ul class="simple">
  77. <li><a class="reference external" href="distributed_adjacency_list.html">Distributed adjacency list</a></li>
  78. </ul>
  79. </blockquote>
  80. <hr class="docutils" />
  81. <p>Copyright (C) 2005 The Trustees of Indiana University.</p>
  82. <p>Authors: Douglas Gregor and Andrew Lumsdaine</p>
  83. </div>
  84. </div>
  85. <div class="footer">
  86. <hr class="footer" />
  87. Generated on: 2009-05-31 00:22 UTC.
  88. Generated by <a class="reference external" href="http://docutils.sourceforge.net/">Docutils</a> from <a class="reference external" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source.
  89. </div>
  90. </body>
  91. </html>