|
|
@ -0,0 +1,17 @@ |
|
|
|
int main(const int argc, const char** argv) { |
|
|
|
try { |
|
|
|
storm::utility::setUp(); |
|
|
|
|
|
|
|
// Parse GSPN from xml
|
|
|
|
|
|
|
|
// Construct MA
|
|
|
|
|
|
|
|
// All operations have now been performed, so we clean up everything and terminate.
|
|
|
|
storm::utility::cleanUp(); |
|
|
|
return 0; |
|
|
|
} catch (storm::exceptions::BaseException const& exception) { |
|
|
|
STORM_LOG_ERROR("An exception caused StoRM to terminate. The message of the exception is: " << exception.what()); |
|
|
|
} catch (std::exception const& exception) { |
|
|
|
STORM_LOG_ERROR("An unexpected exception occurred and caused StoRM to terminate. The message of this exception is: " << exception.what()); |
|
|
|
} |
|
|
|
} |