Is self a root node of the search-tree?

ensure: result == parent == null and result== action == null

Property definitions

ai $ SearchNode :: is_root
	# Is `self` a root node of the search-tree?
	# ensure: `result` == `parent == null` and `result`== `action == null`
	fun is_root: Bool do return parent == null
lib/ai/search.nit:633,2--635,43