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.
19 lines
390 B
19 lines
390 B
#pragma once
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
namespace storm {
|
|
namespace jani {
|
|
class Model;
|
|
class Property;
|
|
|
|
/*!
|
|
* Eliminates all function references in the given model and the given properties by replacing them with their corresponding definitions.
|
|
*/
|
|
void eliminateFunctions(Model& model, std::vector<Property>& properties);
|
|
|
|
}
|
|
}
|
|
|