Browse Source

stubs for gspn files

Former-commit-id: 3258813366
tempestpy_adaptions
sjunges 9 years ago
parent
commit
6896a4ca51
  1. 8
      src/builder/ExplicitGspnModelBuilder.h
  2. 8
      src/parser/GspnParser.h
  3. 8
      src/storage/gspn/GSPN.h
  4. 17
      src/storm-gspn.cpp

8
src/builder/ExplicitGspnModelBuilder.h

@ -0,0 +1,8 @@
//
// Created by Sebastian Junges on 08/10/15.
//
#ifndef STORM_EXPLICITGSPNMODELBUILDER_H
#define STORM_EXPLICITGSPNMODELBUILDER_H
#endif //STORM_EXPLICITGSPNMODELBUILDER_H

8
src/parser/GspnParser.h

@ -0,0 +1,8 @@
//
// Created by Sebastian Junges on 08/10/15.
//
#ifndef STORM_GSPNPARSER_H
#define STORM_GSPNPARSER_H
#endif //STORM_GSPNPARSER_H

8
src/storage/gspn/GSPN.h

@ -0,0 +1,8 @@
//
// Created by Sebastian Junges on 08/10/15.
//
#ifndef STORM_GSPN_H
#define STORM_GSPN_H
#endif //STORM_GSPN_H

17
src/storm-gspn.cpp

@ -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());
}
}
Loading…
Cancel
Save