Class MarkovComparator
- java.lang.Object
-
- org.palladiosimulator.solver.reliability.compare.MarkovComparator
-
public class MarkovComparator extends Object
Provides functionality to compare two Markov models. The comparison is based on the tracing information which uniquely identifies each Markov state.
-
-
Constructor Summary
Constructors Constructor Description MarkovComparator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
compare(String firstMarkovFileName, String secondMarkovFileName)
Loads and compares the Markov models identified by the two given file names.void
compare(org.palladiosimulator.reliability.markov.MarkovChain firstChain, org.palladiosimulator.reliability.markov.MarkovChain secondChain)
Compares two Markov chains.
-
-
-
Method Detail
-
compare
public void compare(org.palladiosimulator.reliability.markov.MarkovChain firstChain, org.palladiosimulator.reliability.markov.MarkovChain secondChain)
Compares two Markov chains.- Parameters:
firstChain
- the first chainsecondChain
- the second chain
-
compare
public void compare(String firstMarkovFileName, String secondMarkovFileName)
Loads and compares the Markov models identified by the two given file names. The files must exist and contain valid Markov models.- Parameters:
firstMarkovFileName
- the file name of the first Markov modelsecondMarkovFileName
- the file name of the second Markov model
-
-