Home
last modified time | relevance | path

Searched defs:VertexBundle (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/libs/graph/test/
Dtest_graph.hpp74 struct VertexBundle struct
76 VertexBundle() : value() {} in VertexBundle() argument
77 VertexBundle(int n) : value(n) {} in VertexBundle() function
79 bool operator==(VertexBundle const& x) const { return value == x.value; } in operator ==() argument
80 bool operator<(VertexBundle const& x) const { return value < x.value; } in operator <() argument
82 int value;