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

state

priority

The priority of the node.

node

The search node.

__init__(priority, node)#
Parameters:
Return type:

None

__iter__()[source]#
__new__(**kwargs)#
node: SearchNode#

The search node.

priority: float#

The priority of the node.

property state#