Compute the set of elements forming the core of the poset hierarchy.

Property definitions

nitc $ POSetConflictGraph :: extract_core
	# Compute the set of elements forming the core of the poset hierarchy.
	private fun extract_core do
		core.clear
		for e in poset do
			if poset[e].direct_greaters.length > 1 then
				core.add_all(poset[e].greaters)
			end
		end
	end
src/compiler/coloring.nit:62,2--70,4