Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/graph/doc/known_problems.html @ 47

Last change on this file since 47 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 2.0 KB
Line 
1<HTML>
2<!--
3  -- Copyright (c) Jeremy Siek, Lie-Quan Lee, and Andrew Lumsdaine 2000
4  --
5  -- Distributed under the Boost Software License, Version 1.0.
6  -- (See accompanying file LICENSE_1_0.txt or copy at
7  -- http://www.boost.org/LICENSE_1_0.txt)
8  -->
9<Head>
10<Title>Known Problems</Title>
11<BODY BGCOLOR="#ffffff" LINK="#0000ee" TEXT="#000000" VLINK="#551a8b" 
12        ALINK="#ff0000"> 
13<IMG SRC="../../../boost.png" 
14     ALT="C++ Boost" width="277" height="86"> 
15
16<BR Clear>
17
18    <h1>Known Problems</h1>
19
20<ol>
21  <li>The <code>subgraph</code> adaptor has several known problems:
22    <ul>
23      <li>Each instance of subgraph has its own copy of internal
24      vertex and edge properties. Only at the root subgraph are the
25      properties valid. </li>
26   
27      <li>Edge and vertex removal functions are unimplemented.</li>
28
29      <li>The graph is required to have vertex descriptors of integral
30      type (that are the same as the vertex index). Practically
31      speaking, that means subgraph only applies to adjacency lists
32      with <code>VertexListS</code> = <code>vecS</code>.</li>
33    </ul></li>
34
35  <li>The <code>EdgeListS</code> parameter to the adjacency list is
36  essentially fixed to <code>listS</code>: other selectors are
37  unlikely to work.</li>
38
39  <li>Using a GraphProperty with adjacency_list may cause a VC++ internal compiler error.</li>
40  <li>Using get(property, graph, edge) may cause a VC++ internal compiler error.</li>
41  <li>&quot;using boost::tie;&quot; may cause VC++ internal compiler error. 
42</ol>
43
44
45<br>
46<HR>
47<TABLE>
48<TR valign=top>
49<TD nowrap>Copyright &copy 2000-2001</TD><TD>
50<A HREF="../../../people/jeremy_siek.htm">Jeremy Siek</A>,
51Indiana University (<A
52HREF="mailto:jsiek@osl.iu.edu">jsiek@osl.iu.edu</A>)<br>
53<A HREF="../../../people/liequan_lee.htm">Lie-Quan Lee</A>, Indiana University (<A HREF="mailto:llee@cs.indiana.edu">llee@cs.indiana.edu</A>)<br>
54<A HREF=http://www.osl.iu.edu/~lums>Andrew Lumsdaine</A>,
55Indiana University (<A
56HREF="mailto:lums@osl.iu.edu">lums@osl.iu.edu</A>)
57</TD></TR></TABLE>
58
59</BODY>
60</HTML> 
Note: See TracBrowser for help on using the repository browser.