Browse Source
Renaming MRMC to STORM, see #42
Renaming MRMC to STORM, see #42
Markt und Straßen stehn verlassen, still erleuchtet jedes Haus, Sinnend' geh ich durch die Gassen, alles sieht so festlich aus. An den Fenstern haben Frauen buntes Spielzeug fromm geschmückt, Tausend Kindlein stehn und schauen, sind so wunderstill beglückt. Und ich wandre aus den Mauern Bis hinaus ins freie Feld, Hehres Glänzen, heil'ges Schauern! Wie so weit und still die Welt! Sterne hoch die Kreise schlingen, Aus des Schnees Einsamkeit Steigt's wie wunderbares Singen- O du gnadenreiche Zeit! Merry Christmas commit ;)tempestpy_adaptions
PBerger
12 years ago
72 changed files with 667 additions and 667 deletions
-
84CMakeLists.txt
-
2doc/Doxyfile.in
-
4mrmc-config.h.in
-
2resources/BUILD.txt
-
2resources/GUIDELINES.txt
-
6src/adapters/GmmxxAdapter.h
-
12src/exceptions/BaseException.h
-
10src/exceptions/FileIoException.h
-
12src/exceptions/InvalidArgumentException.h
-
12src/exceptions/InvalidSettingsException.h
-
12src/exceptions/InvalidStateException.h
-
12src/exceptions/NoConvergenceException.h
-
12src/exceptions/OutOfRangeException.h
-
12src/exceptions/WrongFileFormatException.h
-
12src/formula/And.h
-
12src/formula/Ap.h
-
12src/formula/BoundedUntil.h
-
6src/formula/Formulas.h
-
12src/formula/Next.h
-
12src/formula/Not.h
-
12src/formula/Or.h
-
10src/formula/PctlFormula.h
-
12src/formula/PctlPathFormula.h
-
12src/formula/PctlStateFormula.h
-
16src/formula/ProbabilisticIntervalOperator.h
-
12src/formula/ProbabilisticNoBoundsOperator.h
-
16src/formula/ProbabilisticOperator.h
-
12src/formula/Until.h
-
78src/modelChecker/DtmcPrctlModelChecker.h
-
52src/modelChecker/EigenDtmcPrctlModelChecker.h
-
58src/modelChecker/GmmxxDtmcPrctlModelChecker.h
-
32src/models/AtomicPropositionsLabeling.h
-
36src/models/Ctmc.h
-
36src/models/Dtmc.h
-
16src/models/GraphTransitions.h
-
10src/parser/AtomicPropositionLabelingParser.cpp
-
14src/parser/AtomicPropositionLabelingParser.h
-
6src/parser/AutoTransitionParser.cpp
-
10src/parser/AutoTransitionParser.h
-
8src/parser/DeterministicSparseTransitionParser.cpp
-
14src/parser/DeterministicSparseTransitionParser.h
-
16src/parser/DtmcParser.cpp
-
10src/parser/DtmcParser.h
-
8src/parser/NonDeterministicSparseTransitionParser.cpp
-
14src/parser/NonDeterministicSparseTransitionParser.h
-
26src/parser/Parser.cpp
-
10src/parser/Parser.h
-
8src/parser/PrctlParser.cpp
-
14src/parser/PrctlParser.h
-
6src/parser/SparseStateRewardParser.cpp
-
10src/parser/SparseStateRewardParser.h
-
10src/reward/RewardModel.h
-
26src/solver/GraphAnalyzer.h
-
16src/storage/BitVector.h
-
24src/storage/JacobiDecomposition.h
-
68src/storage/SquareSparseMatrix.h
-
46src/storm.cpp
-
10src/utility/ConstTemplates.h
-
14src/utility/IoUtility.cpp
-
14src/utility/IoUtility.h
-
6src/utility/OsDetection.h
-
26src/utility/Settings.cpp
-
18src/utility/Settings.h
-
16src/utility/Vector.h
-
4storm-config.h.in
-
4test/mrmc-tests.cpp
-
12test/parser/ParseDtmcTest.cpp
-
16test/parser/ReadLabFileTest.cpp
-
18test/parser/ReadTraFileTest.cpp
-
2test/reward/RewardModelTest.cpp
-
36test/storage/BitVectorTest.cpp
-
94test/storage/SquareSparseMatrixTest.cpp
@ -1,4 +0,0 @@ |
|||
// the configured options and settings for MRMC_CPP |
|||
#define MRMC_CPP_VERSION_MAJOR @MRMC_CPP_VERSION_MAJOR@ |
|||
#define MRMC_CPP_VERSION_MINOR @MRMC_CPP_VERSION_MINOR@ |
|||
#define MRMC_CPP_TESTS_BASE_PATH "@MRMC_CPP_TESTS_BASE_PATH@" |
@ -1,18 +1,18 @@ |
|||
#ifndef MRMC_EXCEPTIONS_INVALIDARGUMENTEXCEPTION_H_ |
|||
#define MRMC_EXCEPTIONS_INVALIDARGUMENTEXCEPTION_H_ |
|||
#ifndef STORM_EXCEPTIONS_INVALIDARGUMENTEXCEPTION_H_ |
|||
#define STORM_EXCEPTIONS_INVALIDARGUMENTEXCEPTION_H_ |
|||
|
|||
#include "src/exceptions/BaseException.h" |
|||
|
|||
namespace mrmc { |
|||
namespace storm { |
|||
|
|||
namespace exceptions { |
|||
|
|||
/*! |
|||
* @brief This exception is thrown when a parameter is invalid in this context |
|||
*/ |
|||
MRMC_EXCEPTION_DEFINE_NEW(InvalidArgumentException) |
|||
STORM_EXCEPTION_DEFINE_NEW(InvalidArgumentException) |
|||
|
|||
} // namespace exceptions |
|||
|
|||
} // namespace mrmc |
|||
#endif // MRMC_EXCEPTIONS_INVALIDARGUMENTEXCEPTION_H_ |
|||
} // namespace storm |
|||
#endif // STORM_EXCEPTIONS_INVALIDARGUMENTEXCEPTION_H_ |
@ -1,14 +1,14 @@ |
|||
#ifndef MRMC_EXCEPTIONS_INVALIDSETTINGSEXCEPTION_H_ |
|||
#define MRMC_EXCEPTIONS_INVALIDSETTINGSEXCEPTION_H_ |
|||
#ifndef STORM_EXCEPTIONS_INVALIDSETTINGSEXCEPTION_H_ |
|||
#define STORM_EXCEPTIONS_INVALIDSETTINGSEXCEPTION_H_ |
|||
|
|||
#include "src/exceptions/BaseException.h" |
|||
|
|||
namespace mrmc { |
|||
namespace storm { |
|||
namespace exceptions { |
|||
|
|||
MRMC_EXCEPTION_DEFINE_NEW(InvalidSettingsException) |
|||
STORM_EXCEPTION_DEFINE_NEW(InvalidSettingsException) |
|||
|
|||
} // namespace exceptions |
|||
} // namespace mrmc |
|||
} // namespace storm |
|||
|
|||
#endif // MRMC_EXCEPTIONS_INVALIDSETTINGSEXCEPTION_H_ |
|||
#endif // STORM_EXCEPTIONS_INVALIDSETTINGSEXCEPTION_H_ |
@ -1,17 +1,17 @@ |
|||
#ifndef MRMC_EXCEPTIONS_NOCONVERGENCEEXCEPTION_H_ |
|||
#define MRMC_EXCEPTIONS_NOCONVERGENCEEXCEPTION_H_ |
|||
#ifndef STORM_EXCEPTIONS_NOCONVERGENCEEXCEPTION_H_ |
|||
#define STORM_EXCEPTIONS_NOCONVERGENCEEXCEPTION_H_ |
|||
|
|||
#include "src/exceptions/BaseException.h" |
|||
|
|||
namespace mrmc { |
|||
namespace storm { |
|||
namespace exceptions { |
|||
|
|||
/*! |
|||
* @brief This exception is thrown when an iterative solver failed to converge with the given maxIterations |
|||
*/ |
|||
MRMC_EXCEPTION_DEFINE_NEW(NoConvergenceException) |
|||
STORM_EXCEPTION_DEFINE_NEW(NoConvergenceException) |
|||
|
|||
} // namespace exceptions |
|||
} // namespace mrmc |
|||
} // namespace storm |
|||
|
|||
#endif // MRMC_EXCEPTIONS_NOCONVERGENCEEXCEPTION_H_ |
|||
#endif // STORM_EXCEPTIONS_NOCONVERGENCEEXCEPTION_H_ |
@ -1,18 +1,18 @@ |
|||
#ifndef MRMC_EXCEPTIONS_OUTOFRANGEEXCEPTION_H_ |
|||
#define MRMC_EXCEPTIONS_OUTOFRANGEEXCEPTION_H_ |
|||
#ifndef STORM_EXCEPTIONS_OUTOFRANGEEXCEPTION_H_ |
|||
#define STORM_EXCEPTIONS_OUTOFRANGEEXCEPTION_H_ |
|||
|
|||
#include "src/exceptions/BaseException.h" |
|||
|
|||
namespace mrmc { |
|||
namespace storm { |
|||
|
|||
namespace exceptions { |
|||
|
|||
/* |
|||
* @briefThis exception is thrown when a parameter is not in the range of valid values |
|||
*/ |
|||
MRMC_EXCEPTION_DEFINE_NEW(OutOfRangeException) |
|||
STORM_EXCEPTION_DEFINE_NEW(OutOfRangeException) |
|||
|
|||
} // namespace exceptions |
|||
|
|||
} // namespace mrmc |
|||
#endif // MRMC_EXCEPTIONS_OUTOFRANGEEXCEPTION_H_ |
|||
} // namespace storm |
|||
#endif // STORM_EXCEPTIONS_OUTOFRANGEEXCEPTION_H_ |
@ -0,0 +1,4 @@ |
|||
// the configured options and settings for STORM |
|||
#define STORM_CPP_VERSION_MAJOR @STORM_CPP_VERSION_MAJOR@ |
|||
#define STORM_CPP_VERSION_MINOR @STORM_CPP_VERSION_MINOR@ |
|||
#define STORM_CPP_TESTS_BASE_PATH "@STORM_CPP_TESTS_BASE_PATH@" |
Write
Preview
Loading…
Cancel
Save
Reference in new issue