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.
30 lines
936 B
30 lines
936 B
#pragma once
|
|
#include <iostream>
|
|
#include <memory>
|
|
|
|
#include "storm/models/sparse/Model.h"
|
|
|
|
namespace storm {
|
|
namespace exporter {
|
|
|
|
/*!
|
|
* Exports a sparse model into the explicit DRN format.
|
|
*
|
|
* @param os Stream to export to
|
|
* @param sparseModel Model to export
|
|
* @param parameters List of parameters
|
|
*/
|
|
template<typename ValueType>
|
|
void explicitExportSparseModel(std::ostream& os, std::shared_ptr<storm::models::sparse::Model<ValueType>> sparseModel, std::vector<std::string> const& parameters);
|
|
|
|
/*!
|
|
* Accumalate parameters in the model.
|
|
*
|
|
* @param sparseModel Model.
|
|
* @return List of parameters in the model.
|
|
*/
|
|
template<typename ValueType>
|
|
std::vector<std::string> getParameters(std::shared_ptr<storm::models::sparse::Model<ValueType>> sparseModel);
|
|
|
|
}
|
|
}
|