Symmetri
Loading...
Searching...
No Matches
parsers.h
Go to the documentation of this file.
1#pragma once
2
5#include <set>
6#include <tuple>
7
8#include "symmetri/types.h"
9namespace symmetri {
10
23std::tuple<Net, Marking, PriorityTable> readGrml(
24 const std::set<std::string> &files);
25
38std::tuple<Net, Marking> readPnml(const std::set<std::string> &files);
39
40} // namespace symmetri
std::tuple< Net, Marking > readPnml(const std::set< std::string > &files)
Given a set of unique paths to pnml-files, it parses and merges them, and returns one Net and initial...
Definition pnml_parser.cpp:12