Method: Plexus::UndirectedGraphBuilder::Algorithms#chromatic_number

Defined in:
lib/plexus/undirected_graph/algorithms.rb

#chromatic_numberObject

Raises:

  • (NotImplementedError)


50
51
52
53
# File 'lib/plexus/undirected_graph/algorithms.rb', line 50

def chromatic_number
  return triangulated_chromatic_number if triangulated?
  raise NotImplementedError
end