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.
35 lines
929 B
35 lines
929 B
#ifndef STORM_PARSER_LABPARSER_H_
|
|
#define STORM_PARSER_LABPARSER_H_
|
|
|
|
#include "src/models/AtomicPropositionsLabeling.h"
|
|
#include "boost/integer/integer_mask.hpp"
|
|
|
|
#include "src/parser/Parser.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace storm {
|
|
namespace parser {
|
|
|
|
/*!
|
|
* @brief Load label file and return initialized AtomicPropositionsLabeling object.
|
|
*
|
|
* Note that this class creates a new AtomicPropositionsLabeling object that can
|
|
* be accessed via getLabeling(). However, it will not delete this object!
|
|
*/
|
|
class AtomicPropositionLabelingParser : Parser {
|
|
public:
|
|
AtomicPropositionLabelingParser(uint_fast64_t node_count, std::string const &filename);
|
|
|
|
std::shared_ptr<storm::models::AtomicPropositionsLabeling> getLabeling() {
|
|
return this->labeling;
|
|
}
|
|
|
|
private:
|
|
std::shared_ptr<storm::models::AtomicPropositionsLabeling> labeling;
|
|
};
|
|
|
|
} // namespace parser
|
|
} // namespace storm
|
|
|
|
#endif /* STORM_PARSER_LABPARSER_H_ */
|