(use eggdoc) (define doc `((eggdoc:begin (name "graph-separators") (description "Determine the separation vertices of a graph.") (author (p "Richard Kelsey; ported to Chicken by " (url "http://chicken.wiki.br/users/ivan-raikov" "Ivan Raikov"))) (history (version "1.3" "Ported to Chicken 4") (version "1.0" "Initial release")) (requires) (download "graph-separators.egg") (usage "(require-extension graph-separators)") (documentation (p "A graph is said to have a separation vertex " (tt "v") " (sometimes called an " "articulation point) if there exist vertices " (tt "a") " and " (tt "b") ", where " (tt "a != b") " and " (tt "b != v") ", and all paths connecting " (tt "a") " and " (tt "b") " pass through " (tt "v") ". A graph which has a separation vertex is " "called separable, and one which has none is called non-separable. ") ; (subsection "Procedures" (procedure "graph-separation-vertices:: G -> SEPARATORS * COMPONENTS" (p "Computes the separation vertices of the given graph. " "Returns a list of separation vertices and a list of " "graph components that contain a separation vertex. "))) (examples (pre #<~A" ni nj))))) (else (error "invalid edge " e)))) used-by) (graph-separation-vertices g) EOF )) (license "Copyright (c) 1993-1999 by Richard Kelsey. Ported to Chicken Scheme by Ivan Raikov. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The names of its contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ))))) (if (eggdoc->html doc) (void))