From 5c6bea09d57aef66a648c2dbb4bd142ac64b221f Mon Sep 17 00:00:00 2001 From: Wilf Wilson Date: Wed, 26 May 2021 20:58:27 +0100 Subject: [PATCH] Fix doc references to ExecuteDFS --- doc/oper.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/oper.xml b/doc/oper.xml index 05d575a67..bdc6ad546 100644 --- a/doc/oper.xml +++ b/doc/oper.xml @@ -2001,7 +2001,7 @@ gap> ModularProduct(NullDigraph(0), CompleteDigraph(10)); preorder and postorder) will have -1 values at all of their indicies as no vertex has been visited. The stop attribute will initially be false. This record should be passed into the ExecuteDFS function. - See . + See . record := NewDFSRecord(CompleteDigraph(2)); rec( child := -1, current := -1, @@ -2034,7 +2034,7 @@ gap> record.graph; This is a default function to be passed into the ExecuteDFS function. This does nothing and can be used in place of the PreOrderFunc, PostOrderFunc, AncestorFunc and/or CrossFunc of the ExecuteDFS function. - See . + See . PreOrderFunc := function(record, data) > data.num_vertices := data.num_vertices + 1; @@ -2060,8 +2060,8 @@ rec( child := 1, current := 1, <#GAPDoc Label="ExecuteDFS"> - + This performs a full depth first search from the start vertex (where start is a vertex within the graph). The depth first search can be terminated by changing the record.stop attribute to true in the @@ -2130,4 +2130,4 @@ gap> data; ]]> -<#/GAPDoc> \ No newline at end of file +<#/GAPDoc>