Get the first available free color.

Property definitions

nitc $ POSetGroupColorer :: inherit_color
	# Get the first available free color.
	private fun inherit_color(h: H): Int
	do
		var res = 0
		for p in poset[h].direct_greaters do
			var m = min_colors[p]
			if m > res then res = m
		end
		min_colors[h] = res
		return res
	end
src/compiler/coloring.nit:407,2--417,4