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.
17 lines
548 B
17 lines
548 B
#pragma once
|
|
|
|
#include <map>
|
|
|
|
#include "storm/storage/expressions/ExpressionManager.h"
|
|
#include "storm/storage/expressions/Expression.h"
|
|
|
|
namespace storm {
|
|
namespace utility {
|
|
namespace cli {
|
|
|
|
std::map<storm::expressions::Variable, storm::expressions::Expression> parseConstantDefinitionString(storm::expressions::ExpressionManager const& manager, std::string const& constantDefinitionString);
|
|
|
|
std::vector<std::string> parseCommaSeparatedStrings(std::string const& input);
|
|
}
|
|
}
|
|
}
|