graph_family (967B)
1 # Graph family 2 3 A (generally [infinite]) set of [graphs] 4 5 - [cycle] 6 - [triangle] 7 - [hole] 8 - [path] 9 - [tournament] 10 - [tree] 11 - [polytree] 12 - [multitree] 13 - [forest] 14 - [bipartite_graph] 15 - [interval_graph] 16 - [graph_regular] 17 - [graph_cubic] 18 - [grid_graph] 19 - [wall_graph] 20 - [strongly_connected_graph] 21 - [graph_series_parallel] 22 - [complete_graph] 23 - [graph_hamiltonian] 24 25 - [chordal] 26 - [planar_graph] 27 - [graph_perfect] 28 29 - [graph_free] 30 - [graph_h_free] 31 - [graph_induced_h_free] 32 - [graph_pk_free] 33 - [graph_h_minor_free] 34 35 - [graph_sparse] 36 37 - [cograph] 38 - [erdos_renyi_graph] 39 - [graph_factorable] 40 - [friendship_graph] 41 - [berge_graph] 42 43 - [leaf_power] 44 45 May have the property of being [graph_class_hereditary] 46 47 Up: [graph] 48 49 Aliases: graph class, graph classes, graph families 50 51 See also: [halls_theorem], [network_reliability], [robertson_seymour], [graph_radius_diameter], [turan_theorem], [graph_substructure], [graph_labeling], [erdos_posa], [graph_traversal]