• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 and Workarounds</h1>
19
20This is a list of known problems compiling the BGL for different compilers and
21versions.
22
23<ol>
24  <li>The <code>subgraph</code> adaptor has several known problems:
25    <ul>
26      <li>Each instance of subgraph has its own copy of internal
27      vertex and edge properties. Only at the root subgraph are the
28      properties valid. </li>
29
30      <li>Edge and vertex removal functions are unimplemented.</li>
31
32      <li>The graph is required to have vertex descriptors of integral
33      type (that are the same as the vertex index). Practically
34      speaking, that means subgraph only applies to adjacency lists
35      with <code>VertexListS</code> = <code>vecS</code>.</li>
36    </ul></li>
37
38  <li>The <code>EdgeListS</code> parameter to the adjacency list is
39  essentially fixed to <code>listS</code>: other selectors are
40  unlikely to work.</li>
41
42  <li>Using a GraphProperty with adjacency_list may cause a VC++ internal compiler error.</li>
43  <li>Using get(property, graph, edge) may cause a VC++ internal compiler error.</li>
44  <li>&quot;using boost::tie;&quot; may cause VC++ internal compiler error.
45</ol>
46
47<br>
48<HR>
49<TABLE>
50<TR valign=top>
51<TD nowrap>Copyright &copy; 2000-2001</TD><TD>
52<A HREF="http://www.boost.org/people/jeremy_siek.htm">Jeremy Siek</A>,
53Indiana University (<A
54HREF="mailto:jsiek@osl.iu.edu">jsiek@osl.iu.edu</A>)<br>
55<A HREF="http://www.boost.org/people/liequan_lee.htm">Lie-Quan Lee</A>, Indiana University (<A HREF="mailto:llee@cs.indiana.edu">llee@cs.indiana.edu</A>)<br>
56<A HREF="https://homes.cs.washington.edu/~al75">Andrew Lumsdaine</A>,
57Indiana University (<A
58HREF="mailto:lums@osl.iu.edu">lums@osl.iu.edu</A>)
59</TD></TR></TABLE>
60
61</BODY>
62</HTML>
63