graph_kpartite (330B)
1 # Graph kpartite 2 3 https://en.wikipedia.org/wiki/Multipartite_graph 4 5 A [graph] that can be [graph_colored] with k colors (i.e., for every color the set of vertices with that color is an [independent_set]) 6 7 Specific case: 8 9 - k=2: [graph_bipartite] 10 - k=3: [graph_3_colorable] 11 12 Up: [graph_family] 13 14 Aliases: colorable, graph colorable