// Copyright 2003, Trustees of Indiana University // Please see the license in the file ../LICENSE import java.lang.*; public class bfs_test { public static void main(String[] args) { adjacency_list g = new adjacency_list(); g.add_vertex(new Integer(3)); g.add_vertex(new Integer(4)); g.add_vertex(new Integer(5)); g.add_vertex(new Integer(6)); g.add_edge(new Integer(3), new Integer(6)); g.add_edge(new Integer(3), new Integer(5)); g.add_edge(new Integer(4), new Integer(5)); g.add_edge(new Integer(6), new Integer(4)); g.add_edge(new Integer(4), new Integer(3)); hash_property_map color = new hash_property_map(); breadth_first_search.breadth_first_search( g, new Integer(3), new printing_visitor< adjacency_list, Integer, adj_list_edge>(), color); } }