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.
39 lines
1014 B
39 lines
1014 B
#ifndef MRMC_PARSER_TRAPARSER_H_
|
|
#define MRMC_PARSER_TRAPARSER_H_
|
|
|
|
#include "src/storage/SquareSparseMatrix.h"
|
|
|
|
#include "src/parser/Parser.h"
|
|
#include "src/utility/OsDetection.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace mrmc {
|
|
namespace parser {
|
|
|
|
/*!
|
|
* @brief Load a deterministic transition system from file and create a
|
|
* sparse adjacency matrix whose entries represent the weights of the edges
|
|
*
|
|
* Note that this class creates a new StaticSparseMatrix object that can be
|
|
* accessed via getMatrix(). However, it does not delete this object!
|
|
*/
|
|
class DeterministicSparseTransitionParser : Parser {
|
|
public:
|
|
DeterministicSparseTransitionParser(std::string const &filename);
|
|
|
|
std::shared_ptr<mrmc::storage::SquareSparseMatrix<double>> getMatrix() {
|
|
return this->matrix;
|
|
}
|
|
|
|
private:
|
|
std::shared_ptr<mrmc::storage::SquareSparseMatrix<double>> matrix;
|
|
|
|
uint_fast64_t firstPass(char* buf, uint_fast64_t &maxnode);
|
|
|
|
};
|
|
|
|
} // namespace parser
|
|
} // namespace mrmc
|
|
|
|
#endif /* MRMC_PARSER_TRAPARSER_H_ */
|