sjunges
9 years ago
15 changed files with 82 additions and 47 deletions
-
12CMakeLists.txt
-
11src/cli/cli.cpp
-
29src/cli/cli.h
-
1src/modelchecker/prctl/HybridMdpPrctlModelChecker.cpp
-
9src/modelchecker/prctl/HybridMdpPrctlModelChecker.h
-
1src/modelchecker/propositional/SparsePropositionalModelChecker.h
-
10src/modelchecker/propositional/SymbolicPropositionalModelChecker.h
-
1src/models/ModelBase.h
-
1src/models/sparse/Dtmc.h
-
5src/models/sparse/Model.h
-
1src/models/symbolic/Model.cpp
-
1src/storage/DeterministicModelBisimulationDecomposition.h
-
10src/storm.cpp
-
36src/utility/storm.h
-
1test/functional/modelchecker/GmmxxHybridMdpPrctlModelCheckerTest.cpp
@ -0,0 +1,29 @@ |
|||
#ifndef STORM_UTILITY_CLI_H_ |
|||
#define STORM_UTILITY_CLI_H_ |
|||
|
|||
#include <string> |
|||
|
|||
namespace storm { |
|||
namespace cli { |
|||
|
|||
std::string getCurrentWorkingDirectory(); |
|||
|
|||
void printHeader(const int argc, const char* argv[]); |
|||
|
|||
void printUsage(); |
|||
|
|||
/*! |
|||
* Parses the given command line arguments. |
|||
* |
|||
* @param argc The argc argument of main(). |
|||
* @param argv The argv argument of main(). |
|||
* @return True iff the program should continue to run after parsing the options. |
|||
*/ |
|||
bool parseOptions(const int argc, const char* argv[]); |
|||
|
|||
|
|||
void processOptions(); |
|||
} |
|||
} |
|||
|
|||
#endif |
Write
Preview
Loading…
Cancel
Save
Reference in new issue