concepts.algorithm.search.heuristic_search.QueueNode#
- class QueueNode[source]#
Bases:
object
A node object in the queue, containing the priority and the search node.
Methods
Attributes
- __init__(priority, node)#
- Parameters:
priority (float)
node (SearchNode)
- Return type:
None
- __new__(**kwargs)#
- node: SearchNode#
The search node.
- property state#