|
Last change
on this file since 45 was
29,
checked in by landauf, 17 years ago
|
|
updated boost from 1_33_1 to 1_34_1
|
|
File size:
1.5 KB
|
| Line | |
|---|
| 1 | <HTML> |
|---|
| 2 | <!-- |
|---|
| 3 | -- Copyright (c) Jeremy Siek 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>VertexAndEdgeListGraph</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 | |
|---|
| 19 | <H2><A NAME="concept:VertexAndEdgeListGraph"></A> |
|---|
| 20 | VertexAndEdgeListGraph |
|---|
| 21 | </H2> |
|---|
| 22 | |
|---|
| 23 | The VertexAndEdgeListGraph concept refines the <a |
|---|
| 24 | href="./VertexListGraph.html">VertexListGraph</a> and the <a |
|---|
| 25 | href="./EdgeListGraph.html">EdgeListGraph</a> concepts. No further |
|---|
| 26 | requirements are added. |
|---|
| 27 | |
|---|
| 28 | <H3>Refinement of</H3> |
|---|
| 29 | |
|---|
| 30 | <a href="./VertexListGraph.html">VertexListGraph</a>, |
|---|
| 31 | <a href="./EdgeListGraph.html">EdgeListGraph</a> |
|---|
| 32 | |
|---|
| 33 | |
|---|
| 34 | <H3>Models</H3> |
|---|
| 35 | |
|---|
| 36 | <UL> |
|---|
| 37 | <LI><TT>adjacency_list</TT></LI> |
|---|
| 38 | </UL> |
|---|
| 39 | |
|---|
| 40 | <P> |
|---|
| 41 | |
|---|
| 42 | <H3>See Also</H3> |
|---|
| 43 | |
|---|
| 44 | <a href="./graph_concepts.html">Graph concepts</a> |
|---|
| 45 | |
|---|
| 46 | <H3>Concept Checking Class</H3> |
|---|
| 47 | |
|---|
| 48 | <P> |
|---|
| 49 | <PRE> |
|---|
| 50 | template <class G> |
|---|
| 51 | struct VertexAndEdgeListGraphConcept |
|---|
| 52 | { |
|---|
| 53 | void constraints() { |
|---|
| 54 | function_requires< VertexListGraphConcept<G> >(); |
|---|
| 55 | function_requires< EdgeListGraphConcept<G> >(); |
|---|
| 56 | } |
|---|
| 57 | }; |
|---|
| 58 | </PRE> |
|---|
| 59 | |
|---|
| 60 | |
|---|
| 61 | <br> |
|---|
| 62 | <HR> |
|---|
| 63 | <TABLE> |
|---|
| 64 | <TR valign=top> |
|---|
| 65 | <TD nowrap>Copyright © 2000-2001</TD><TD> |
|---|
| 66 | <A HREF="../../../people/jeremy_siek.htm">Jeremy Siek</A>, Indiana University (<A HREF="mailto:jsiek@osl.iu.edu">jsiek@osl.iu.edu</A>) |
|---|
| 67 | </TD></TR></TABLE> |
|---|
| 68 | |
|---|
| 69 | </BODY> |
|---|
| 70 | </HTML> |
|---|
Note: See
TracBrowser
for help on using the repository browser.