Uses of Interface
fern.analysis.NetworkSearchAction

Packages that use NetworkSearchAction
fern.analysis Provides classes and algorithms for analysing networks like ShortestPath, AutocatalyticDetection. 
 

Uses of NetworkSearchAction in fern.analysis
 

Methods in fern.analysis with parameters of type NetworkSearchAction
 int AnalysisBase.bfs(int[] speciesSource, int[] reactionSource, NetworkSearchAction action)
          Performs a breath first search starting at the given sources (which means the contents of speciesSource and reactionSource are the initial content of the queue.
 int AnalysisBase.dfs(int[] speciesSource, int[] reactionSource, NetworkSearchAction action)
          Performs a depth first search starting at the given sources (which means the contents of speciesSource and reactionSource are the initial content of the stack.
 int AnalysisBase.search(IntSearchStructure str, int[] speciesSource, int[] reactionSource, NetworkSearchAction action)
          Performs a search starting at the given sources (which means the contents of speciesSource and reactionSource are the initial content of the search structure IntSearchStructure.