Browse Source
Some more refactoring, renaming, adding #ifndef guards...
Some more refactoring, renaming, adding #ifndef guards...
Fixed a warning in SquareSparseMatrix.h regarding a conversion from uint64 to uinttempestpy_adaptions
PBerger
12 years ago
19 changed files with 66 additions and 67 deletions
-
6src/exceptions/BaseException.h
-
16src/exceptions/InvalidSettings.h
-
16src/exceptions/InvalidSettingsException.h
-
18src/exceptions/NoConvergenceException.h
-
4src/modelChecker/EigenDtmcPrctlModelChecker.h
-
4src/modelChecker/GmmxxDtmcPrctlModelChecker.h
-
13src/mrmc.cpp
-
4src/parser/LabParser.cpp
-
6src/parser/LabParser.h
-
4src/parser/PrctlParser.cpp
-
10src/parser/PrctlParser.h
-
4src/parser/TraParser.cpp
-
6src/parser/TraParser.h
-
2src/storage/SquareSparseMatrix.h
-
4src/utility/IoUtility.cpp
-
8src/utility/Settings.cpp
-
4src/utility/Settings.h
-
2test/parser/ReadLabFileTest.cpp
-
2test/parser/ReadTraFileTest.cpp
@ -1,16 +0,0 @@ |
|||
#ifndef INVALIDSETTINGS_H_ |
|||
#define INVALIDSETTINGS_H_ |
|||
|
|||
#include "src/exceptions/BaseException.h" |
|||
|
|||
namespace mrmc { |
|||
namespace exceptions { |
|||
|
|||
class InvalidSettings : public BaseException<InvalidSettings> |
|||
{ |
|||
}; |
|||
|
|||
} // namespace exceptions |
|||
} // namespace mrmc |
|||
|
|||
#endif // INVALIDSETTINGS_H_ |
@ -0,0 +1,16 @@ |
|||
#ifndef MRMC_EXCEPTIONS_INVALIDSETTINGSEXCEPTION_H_ |
|||
#define MRMC_EXCEPTIONS_INVALIDSETTINGSEXCEPTION_H_ |
|||
|
|||
#include "src/exceptions/BaseException.h" |
|||
|
|||
namespace mrmc { |
|||
namespace exceptions { |
|||
|
|||
class InvalidSettingsException : public BaseException<InvalidSettingsException> |
|||
{ |
|||
}; |
|||
|
|||
} // namespace exceptions |
|||
} // namespace mrmc |
|||
|
|||
#endif // MRMC_EXCEPTIONS_INVALIDSETTINGSEXCEPTION_H_ |
@ -1,11 +1,11 @@ |
|||
/*!
|
|||
* readLabFile.cpp |
|||
* LabParser.cpp |
|||
* |
|||
* Created on: 21.11.2012 |
|||
* Author: Gereon Kremer |
|||
*/ |
|||
|
|||
#include "readLabFile.h"
|
|||
#include "src/parser/LabParser.h"
|
|||
|
|||
#include "src/exceptions/WrongFileFormatException.h"
|
|||
#include "src/exceptions/FileIoException.h"
|
@ -1,11 +1,11 @@ |
|||
/*!
|
|||
* readTraFile.cpp |
|||
* TraParser.cpp |
|||
* |
|||
* Created on: 20.11.2012 |
|||
* Author: Gereon Kremer |
|||
*/ |
|||
|
|||
#include "src/parser/readTraFile.h"
|
|||
#include "src/parser/TraParser.h"
|
|||
#include "src/exceptions/FileIoException.h"
|
|||
#include "src/exceptions/WrongFileFormatException.h"
|
|||
#include "boost/integer/integer_mask.hpp"
|
Write
Preview
Loading…
Cancel
Save
Reference in new issue