annotate .hgignore @ 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 46b166523bf8
children 4978b5baf8f1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
1 # use glob syntax.
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
2 syntax: glob
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
3
3
ace29ecfb846 basic files and directories
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 1
diff changeset
4 *.out
1
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
5 *.a
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
6 *.o
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
7 *.exe
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
8 *.pyc
65
75cf537b8d88 moved and generalized map making functions to the library
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 3
diff changeset
9 *.pyo
1
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
10 *~
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
11 *.rej
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
12 *.orig
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
13 *.bak
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
14 *.lock
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
15 *.yml
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
16 *.zip
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
17 .emacs.desktop*
120
46b166523bf8 added CMakeLists.txt for feature-based-tracking
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 65
diff changeset
18
46b166523bf8 added CMakeLists.txt for feature-based-tracking
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 65
diff changeset
19 CMakeCache.txt
46b166523bf8 added CMakeLists.txt for feature-based-tracking
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 65
diff changeset
20 *.cmake
46b166523bf8 added CMakeLists.txt for feature-based-tracking
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 65
diff changeset
21
1
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
22 latex
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
23 html
f5806717cc36 Added hgignore
Nicolas Saunier <nico@confins.net>
parents:
diff changeset
24 bin
120
46b166523bf8 added CMakeLists.txt for feature-based-tracking
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 65
diff changeset
25 build
46b166523bf8 added CMakeLists.txt for feature-based-tracking
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents: 65
diff changeset
26 CMakeFiles