Jump to content

Goal node (computer science)

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by JJMC89 bot III (talk | contribs) at 19:55, 12 October 2024 (Moving Category:Algorithms in graph theory to Category:Graph algorithms per Wikipedia:Categories for discussion/Log/2024 October 4). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

In computer science, a goal node is a node in a graph that meets defined criteria for success or termination.

Heuristical artificial intelligence algorithms, like A* and B*, attempt to reach such nodes in optimal time by defining the distance to the goal node. When the goal node is reached, A* defines the distance to the goal node as 0 and all other nodes' distances as positive values.

References

[edit]
  • N.J. Nilsson Principles of Artificial Intelligence (1982 Birkhäuser) p. 63

See also

[edit]