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:
806 bytes
|
Rev | Line | |
---|
[29] | 1 | //======================================================================= |
---|
| 2 | // Copyright 2001 Jeremy G. Siek, Andrew Lumsdaine, Lie-Quan Lee, |
---|
| 3 | // |
---|
| 4 | // Distributed under the Boost Software License, Version 1.0. (See |
---|
| 5 | // accompanying file LICENSE_1_0.txt or copy at |
---|
| 6 | // http://www.boost.org/LICENSE_1_0.txt) |
---|
| 7 | //======================================================================= |
---|
| 8 | #include <boost/graph/graph_concepts.hpp> |
---|
| 9 | #include <boost/graph/leda_graph.hpp> |
---|
| 10 | |
---|
| 11 | int |
---|
| 12 | main() |
---|
| 13 | { |
---|
| 14 | using namespace boost; |
---|
| 15 | typedef leda::GRAPH < int, int >Graph; |
---|
| 16 | function_requires < VertexListGraphConcept < Graph > >(); |
---|
| 17 | function_requires < BidirectionalGraphConcept < Graph > >(); |
---|
| 18 | function_requires < VertexMutableGraphConcept < Graph > >(); |
---|
| 19 | function_requires < EdgeMutableGraphConcept < Graph > >(); |
---|
| 20 | return EXIT_SUCCESS; |
---|
| 21 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.