Lines Matching refs:Highway
65 struct Highway struct
67 Highway() {} in Highway() argument
68 Highway(const string& name, double miles, int speed_limit = 65, in Highway() function
85 std::ostream& operator<<(std::ostream& out, const Highway& highway) in operator <<() argument
92 std::istream& operator>>(std::istream& in, Highway& highway) in operator >>()
98 bool operator==(const Highway& h1, const Highway& h2) in operator ==()
197 = add_edge(v, bloomington, Highway("Long", 1000), map).first; in test_bundled_properties()
201 BOOST_TEST(get(get(&Highway::name, map), e) == "I-87"); in test_bundled_properties()
203 BOOST_TEST(get(&Highway::name, map, e) == "I-87"); in test_bundled_properties()
211 BOOST_TEST(get(get(&Highway::name, fmap), e) == "I-87"); in test_bundled_properties()
213 BOOST_TEST(get(&Highway::name, fmap, e) == "I-87"); in test_bundled_properties()
224 City, boost::property< boost::edge_index_t, int, Highway > > > in test_subgraph_bundled_properties()
244 boost::bidirectionalS, City, Highway > in main()
246 typedef boost::adjacency_matrix< boost::directedS, City, Highway > Map2; in main()