From 2785399c7bf6d8af8ee826137cc64e1203aa82bf Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 12 Mar 2010 04:36:43 -0600 Subject: [PATCH] Add ARTICLE: and ABOUT: sections to astar docs --- extra/astar/astar-docs.factor | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/extra/astar/astar-docs.factor b/extra/astar/astar-docs.factor index b43f2aba1c..d19166c1bf 100644 --- a/extra/astar/astar-docs.factor +++ b/extra/astar/astar-docs.factor @@ -74,3 +74,12 @@ HELP: considered { $description "When called after a call to " { $link find-path } ", return a list of nodes " "which have been examined during the A* exploration." } ; + +ARTICLE: "astar" "A* algorithm" +"The " { $vocab-link "astar" } " vocabulary implements a graph search algorithm for finding the least-cost path from one node to another." $nl +"Make an A* object:" +{ $subsections } +"Find a path between nodes:" +{ $subsections find-path } ; + +ABOUT: "astar"