Browse Source

added required includes

Former-commit-id: c523950b43
tempestpy_adaptions
TimQu 9 years ago
parent
commit
f285858e28
  1. 3
      src/settings/Option.cpp
  2. 3
      src/solver/AbstractEquationSolver.h
  3. 1
      src/storage/BitVectorHashMap.cpp
  4. 4
      src/storage/dd/Bdd.cpp
  5. 4
      src/utility/macros.h

3
src/settings/Option.cpp

@ -2,6 +2,7 @@
#include <iomanip>
#include <string>
#include <algorithm>
#include "ArgumentBase.h"
#include "Argument.h"
@ -211,4 +212,4 @@ namespace storm {
return out;
}
}
}
}

3
src/solver/AbstractEquationSolver.h

@ -1,6 +1,7 @@
#ifndef STORM_SOLVER_ABSTRACTEQUATIONSOLVER_H_
#define STORM_SOLVER_ABSTRACTEQUATIONSOLVER_H_
#include <memory>
#include "src/solver/TerminationCondition.h"
namespace storm {
@ -50,4 +51,4 @@ namespace storm {
}
}
#endif /* STORM_SOLVER_ABSTRACTEQUATIONSOLVER_H_ */
#endif /* STORM_SOLVER_ABSTRACTEQUATIONSOLVER_H_ */

1
src/storage/BitVectorHashMap.cpp

@ -1,5 +1,6 @@
#include "src/storage/BitVectorHashMap.h"
#include <algorithm>
#include <iostream>
#include "src/utility/macros.h"

4
src/storage/dd/Bdd.cpp

@ -1,3 +1,5 @@
#include <algorithm>
#include "src/storage/dd/Bdd.h"
#include "src/storage/dd/Add.h"
#include "src/storage/dd/Odd.h"
@ -360,4 +362,4 @@ namespace storm {
template Add<DdType::Sylvan, double> Bdd<DdType::Sylvan>::ite(Add<DdType::Sylvan, double> const& thenAdd, Add<DdType::Sylvan, double> const& elseAdd) const;
template Add<DdType::Sylvan, uint_fast64_t> Bdd<DdType::Sylvan>::ite(Add<DdType::Sylvan, uint_fast64_t> const& thenAdd, Add<DdType::Sylvan, uint_fast64_t> const& elseAdd) const;
}
}
}

4
src/utility/macros.h

@ -2,6 +2,8 @@
#define STORM_UTILITY_MACROS_H_
#include <cassert>
#include <string.h>
#include "storm-config.h"
#ifndef STORM_LOGGING_FRAMEWORK
@ -272,4 +274,4 @@ LOG4CPLUS_INFO(logger, "Enabled trace mode, log output gets printed to console."
STORM_PRINT(message); \
}
#endif /* STORM_UTILITY_MACROS_H_ */
#endif /* STORM_UTILITY_MACROS_H_ */
Loading…
Cancel
Save