Package org.networkcalculus.dnc.tandem
Class AbstractTandemAnalysis
- java.lang.Object
-
- org.networkcalculus.dnc.tandem.AbstractTandemAnalysis
-
- All Implemented Interfaces:
TandemAnalysis
- Direct Known Subclasses:
PmooAnalysis,SeparateFlowAnalysis,TandemMatchingAnalysis,TotalFlowAnalysis
public abstract class AbstractTandemAnalysis extends java.lang.Object implements TandemAnalysis
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.networkcalculus.dnc.tandem.TandemAnalysis
TandemAnalysis.Analyses
-
-
Field Summary
Fields Modifier and Type Field Description protected AnalysisConfigconfigurationprotected TandemAnalysisResultsresultprotected ServerGraphserver_graph
-
Constructor Summary
Constructors Constructor Description AbstractTandemAnalysis()
-
Method Summary
Modifier and Type Method Description NumgetBacklogBound()Returns the backlog bound of the analysis.NumgetDelayBound()Returns the delay bound of the analysis.java.util.Map<Server,java.util.Set<ArrivalCurve>>getServerAlphasMap()For TFA this is the whole traffic at a server because you do not separate the flow of interest during analysis.java.lang.StringgetServerAlphasMapString()ServerGraphgetServerGraph()java.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.networkcalculus.dnc.tandem.TandemAnalysis
performAnalysis, performAnalysis
-
-
-
-
Field Detail
-
server_graph
protected ServerGraph server_graph
-
configuration
protected AnalysisConfig configuration
-
result
protected TandemAnalysisResults result
-
-
Method Detail
-
getServerGraph
public ServerGraph getServerGraph()
- Specified by:
getServerGraphin interfaceTandemAnalysis
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getDelayBound
public Num getDelayBound()
Returns the delay bound of the analysis.- Specified by:
getDelayBoundin interfaceTandemAnalysis- Returns:
- the delay bound
-
getBacklogBound
public Num getBacklogBound()
Returns the backlog bound of the analysis.- Specified by:
getBacklogBoundin interfaceTandemAnalysis- Returns:
- the backlog bound
-
getServerAlphasMap
public java.util.Map<Server,java.util.Set<ArrivalCurve>> getServerAlphasMap()
For TFA this is the whole traffic at a server because you do not separate the flow of interest during analysis.For SFA and PMOO you will get the arrival bounds of the cross-traffic at every server.
- Specified by:
getServerAlphasMapin interfaceTandemAnalysis- Returns:
- Mapping from the server to the server's arrival bound
-
getServerAlphasMapString
public java.lang.String getServerAlphasMapString()
- Specified by:
getServerAlphasMapStringin interfaceTandemAnalysis
-
-