graph_family (929B)
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 24 - [chordal] 25 - [planar_graph] 26 - [graph_perfect] 27 28 - [graph_free] 29 - [graph_h_free] 30 - [graph_induced_h_free] 31 - [graph_pk_free] 32 - [graph_h_minor_free] 33 34 - [graph_sparse] 35 36 - [cograph] 37 - [erdos_renyi_graph] 38 - [graph_factorable] 39 - [friendship_graph] 40 - [berge_graph] 41 42 May have the property of being [graph_class_hereditary] 43 44 Up: [graph] 45 46 Aliases: graph class, graph classes, graph families 47 48 See also: [halls_theorem], [network_reliability], [robertson_seymour], [graph_radius_diameter], [turan_theorem], [graph_substructure], [graph_labeling], [erdos_posa], [graph_traversal]