From d893f5a19b5bf0ed68aac7a2a4d33338df34ab9b Mon Sep 17 00:00:00 2001 From: Matthias Volk Date: Fri, 9 Jun 2017 15:33:25 +0200 Subject: [PATCH] Named variables in api --- src/storm/api/builder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storm/api/builder.h b/src/storm/api/builder.h index 774100c4f..dab7ac5d5 100644 --- a/src/storm/api/builder.h +++ b/src/storm/api/builder.h @@ -116,7 +116,7 @@ namespace storm { } template - std::shared_ptr> buildExplicitModel(std::string const&, std::string const&, boost::optional const& = boost::none, boost::optional const& = boost::none, boost::optional const& = boost::none) { + std::shared_ptr> buildExplicitModel(std::string const& transitionsFile, std::string const& labelingFile, boost::optional const& stateRewardsFile = boost::none, boost::optional const& transitionRewardsFile = boost::none, boost::optional const& choiceLabelingFile = boost::none) { STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Exact or parametric models with explicit input are not supported."); }