Compute the set of elements belonging to the crown of the inheritance hierarchy.

Property definitions

nitc $ POSetConflictGraph :: extract_crown
	# Compute the set of elements belonging to the crown of the inheritance hierarchy.
	private fun extract_crown do
		crown.clear
		for e in poset do
			if not core.has(e) and not border.has(e) then crown.add(e)
		end
	end
src/compiler/coloring.nit:90,2--96,4