|
@ -519,19 +519,23 @@ namespace storm { |
|
|
auto start = std::chrono::high_resolution_clock::now(); |
|
|
auto start = std::chrono::high_resolution_clock::now(); |
|
|
|
|
|
|
|
|
std::shared_ptr<storm::models::sparse::Model<ValueType, storm::models::sparse::StandardRewardModel<ValueType>>> sparseModel(nullptr); |
|
|
std::shared_ptr<storm::models::sparse::Model<ValueType, storm::models::sparse::StandardRewardModel<ValueType>>> sparseModel(nullptr); |
|
|
|
|
|
boost::optional<std::string> error; |
|
|
try { |
|
|
try { |
|
|
sparseModel = std::shared_ptr<storm::models::sparse::Model<ValueType, storm::models::sparse::StandardRewardModel<ValueType>>>(builder->build()); |
|
|
sparseModel = std::shared_ptr<storm::models::sparse::Model<ValueType, storm::models::sparse::StandardRewardModel<ValueType>>>(builder->build()); |
|
|
STORM_LOG_THROW(sparseModel, storm::exceptions::UnexpectedException, "An unexpected error occurred."); |
|
|
STORM_LOG_THROW(sparseModel, storm::exceptions::UnexpectedException, "An unexpected error occurred."); |
|
|
STORM_LOG_TRACE("Successfully got model from jit-builder."); |
|
|
STORM_LOG_TRACE("Successfully got model from jit-builder."); |
|
|
} catch (std::exception const& e) { |
|
|
} catch (std::exception const& e) { |
|
|
STORM_LOG_THROW(false, storm::exceptions::WrongFormatException, "Model building failed. Reason: " << e.what()); |
|
|
|
|
|
|
|
|
error = e.what(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
auto end = std::chrono::high_resolution_clock::now(); |
|
|
auto end = std::chrono::high_resolution_clock::now(); |
|
|
STORM_LOG_TRACE("Building model took " << std::chrono::duration_cast<std::chrono::milliseconds>(end - start).count() << "ms."); |
|
|
STORM_LOG_TRACE("Building model took " << std::chrono::duration_cast<std::chrono::milliseconds>(end - start).count() << "ms."); |
|
|
|
|
|
|
|
|
// (7) Delete the shared library.
|
|
|
// (7) Delete the shared library.
|
|
|
boost::filesystem::remove(dynamicLibraryPath); |
|
|
boost::filesystem::remove(dynamicLibraryPath); |
|
|
|
|
|
|
|
|
|
|
|
STORM_LOG_THROW(!error, storm::exceptions::WrongFormatException, "Model building failed. Reason: " << error.get()); |
|
|
|
|
|
|
|
|
// Return the constructed model.
|
|
|
// Return the constructed model.
|
|
|
return sparseModel; |
|
|
return sparseModel; |
|
|
} |
|
|
} |
|
|