PREV INDEX NEXT

Author: Stan Eisenstat
Subject: Re: [Cs323] Fiend DFS vs BFS
Date: Friday, 04 Sep 2020, 07:21:41


    > Message Posted By: Unknown
    >
    > Is Fiend doing a BFS if the -depth flag is not specified?

No.  The search is always depth-first.  The default is
preorder (node before descendants), but -depth specifies
postorder (node after descendants

--Stan-
PREV INDEX NEXT