You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
/*
|
|
* IoUtility.h
|
|
*
|
|
* Created on: 17.10.2012
|
|
* Author: Thomas Heinemann
|
|
*/
|
|
|
|
#ifndef STORM_UTILITY_IOUTILITY_H_
|
|
#define STORM_UTILITY_IOUTILITY_H_
|
|
|
|
#include "src/models/Dtmc.h"
|
|
|
|
namespace storm {
|
|
|
|
namespace utility {
|
|
|
|
/*!
|
|
Creates a DOT file which provides the graph of the DTMC.
|
|
|
|
Currently, only a version for DTMCs using probabilities of type double is provided.
|
|
Adaptions for other types may be included later.
|
|
|
|
@param dtmc The DTMC to output
|
|
@param filename The Name of the file to write in. If the file already exists,
|
|
it will be overwritten.
|
|
|
|
*/
|
|
void dtmcToDot(storm::models::Dtmc<double> const &dtmc, std::string filename);
|
|
|
|
/*!
|
|
Parses a transition file and a labeling file and produces a DTMC out of them.
|
|
Note that the labeling file may have at most as many nodes as the transition file!
|
|
|
|
@param tra_file String containing the location of the transition file (....tra)
|
|
@param lab_file String containing the location of the labeling file (....lab)
|
|
@returns The DTMC described by the two files.
|
|
|
|
*/
|
|
//storm::models::Dtmc<double>* parseDTMC(std::string const &tra_file, std::string const &lab_file);
|
|
|
|
} //namespace utility
|
|
|
|
} //namespace storm
|
|
|
|
#endif /* STORM_UTILITY_IOUTILITY_H_ */
|