Package ptolemy.graph.analysis.analyzer
Interface GraphAnalyzer
-
- All Superinterfaces:
Analyzer
- All Known Subinterfaces:
AllPairShortestPathAnalyzer
,ClusterNodesTransformer
,CycleExistenceAnalyzer
,CycleMeanAnalyzer
,MaximumProfitToCostRatioAnalyzer
,MirrorTransformer
,NegativeLengthCycleAnalyzer
,ScheduleAnalyzer
,SelfLoopAnalyzer
,SingleSourceLongestPathAnalyzer
,SinkNodeAnalyzer
,SourceNodeAnalyzer
,Transformer
,TransitiveClosureAnalyzer
,ZeroLengthCycleAnalyzer
- All Known Implementing Classes:
AllEdgeSingleSourceLongestPathStrategy
,CachedStrategy
,ClusterNodesTransformerStrategy
,FloydWarshallAllPairShortestPathStrategy
,FloydWarshallCycleExistenceStrategy
,FloydWarshallNegativeLengthCycleStrategy
,FloydWarshallStrategy
,FloydWarshallTransitiveClosureStrategy
,FloydWarshallZeroLengthCycleStrategy
,KarpCycleMeanStrategy
,MirrorTransformerStrategy
,ParhiMaximumProfitToCostRatioStrategy
,SelfLoopStrategy
,SinkNodeStrategy
,SourceNodeStrategy
public interface GraphAnalyzer extends Analyzer
A base interface for all the graph analyzers. Graph analyzers are analyzers which analyze graphs and compute results, that will be accessed through methods that interfaces that extend this one will define.- Since:
- Ptolemy II 4.0
- Version:
- $Id$
- Author:
- Shahrooz Shahparnia
- Pt.AcceptedRating:
- Red (ssb)
- Pt.ProposedRating:
- Red (shahrooz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Graph
graph()
Return the graph associated with this analyzer.
-
-
-
Method Detail
-
graph
Graph graph()
Return the graph associated with this analyzer.- Returns:
- Return the graph associated with this analyzer.
-
-