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.
 
 
 
 

23 lines
476 B

#pragma once
#include <map>
namespace storm {
namespace expressions {
class Variable;
class Expression;
}
namespace jani {
class Model;
}
namespace utility {
namespace jani {
std::map<storm::expressions::Variable, storm::expressions::Expression> parseConstantDefinitionString(storm::jani::Model const& model, std::string const& constantDefinitionString);
}
}
}