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."); } diff --git a/src/storm/api/properties.h b/src/storm/api/properties.h index bcc1a8882..c52073105 100644 --- a/src/storm/api/properties.h +++ b/src/storm/api/properties.h @@ -4,6 +4,7 @@ #include #include #include +#include #include namespace storm {