Property definitions

nitc $ BucketsColorer :: is_color_free
	private fun is_color_free(bucket: E, color: Int): Bool do
		if conflicts.has_key(bucket) then
			for other in conflicts[bucket] do
				if colors.has_key(other) and colors[other] == color then return false
			end
		end
		return true
	end
src/compiler/coloring.nit:489,2--496,4