annotate LICENSE @ 190:36968a63efe1

Got the connected_components to finally work using a vecS for the vertex list in the adjacency list. In this case, the component map is simply a vector of ints (which is the type of UndirectedGraph::vextex_descriptor (=graph_traits<FeatureGraph>::vertex_descriptor) and probably UndirectedGraph::vertices_size_type). To use listS, I was told on the Boost mailing list: >> If you truly need listS, you will need to create a vertex index >> map, fill it in before you create the property map, and pass it to the >> vector_property_map constructor (and as a type argument to that class). It may be feasible with a component map like shared_array_property_map< graph_traits<FeatureGraph>::vertex_descriptor, property_map<FeatureGraph, vertex_index_t>::const_type > components(num_vertices(g), get(vertex_index, g));
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Wed, 07 Dec 2011 18:51:32 -0500
parents 9a51372607d6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
80
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
1 Copyright (c) 2009-2011 Nicolas Saunier
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
2
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
3 Permission is hereby granted, free of charge, to any person obtaining a copy
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
4 of this software and associated documentation files (the "Software"), to deal
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
5 in the Software without restriction, including without limitation the rights
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
6 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
7 copies of the Software, and to permit persons to whom the Software is
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
8 furnished to do so, subject to the following conditions:
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
9
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
10 The above copyright notice and this permission notice shall be included in
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
11 all copies or substantial portions of the Software.
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
12
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
13 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
14 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
16 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
17 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
18 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
9a51372607d6 added MIT license to the project
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
19 THE SOFTWARE.