~ubuntu-branches/debian/wheezy/abyss/wheezy

« back to all changes in this revision

Viewing changes to Graph/Properties.h

  • Committer: Package Import Robot
  • Author(s): Shaun Jackman
  • Date: 2012-05-31 11:39:13 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120531113913-39atrfritvjevhv6
Tags: 1.3.4-1
* New upstream release.
* debian/copyright: Add CityHash, which has an Expat license.
* debian/control: Bump Standards-Version to 3.9.3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
/** The distance between two vertices. */
9
9
enum edge_distance_t { edge_distance };
10
10
 
 
11
/** The complementary vertex of a skew-symmetric graph. */
 
12
enum vertex_complement_t { vertex_complement };
 
13
 
 
14
/** The index of a contig. */
 
15
enum vertex_contig_index_t { vertex_contig_index };
 
16
 
 
17
/** The name of a contig without an orientation. */
 
18
enum vertex_contig_name_t { vertex_contig_name };
 
19
 
11
20
/** The coverage of a vertex. */
12
21
enum vertex_coverage_t { vertex_coverage };
13
22
 
22
31
 
23
32
using boost::edge_bundle;
24
33
using boost::edge_bundle_t;
 
34
using boost::edge_name;
 
35
using boost::edge_name_t;
25
36
using boost::edge_weight;
26
37
using boost::edge_weight_t;
27
38
using boost::no_property;
39
50
 
40
51
namespace boost {
41
52
        BOOST_INSTALL_PROPERTY(edge, distance);
 
53
        BOOST_INSTALL_PROPERTY(vertex, complement);
 
54
        BOOST_INSTALL_PROPERTY(vertex, contig_index);
 
55
        BOOST_INSTALL_PROPERTY(vertex, contig_name);
42
56
        BOOST_INSTALL_PROPERTY(vertex, coverage);
43
57
        BOOST_INSTALL_PROPERTY(vertex, length);
44
58
        BOOST_INSTALL_PROPERTY(vertex, removed);