Browse Source

Fixed compile issues with under Linux

Former-commit-id: 17f4d895ec
tempestpy_adaptions
Mavo 8 years ago
parent
commit
ec8b5a23f2
  1. 2
      src/builder/DftSmtBuilder.cpp
  2. 2
      src/storm-dyftee.cpp

2
src/builder/DftSmtBuilder.cpp

@ -1,4 +1,4 @@
#include "src/builder/DFTSMTBuilder.h"
#include "src/builder/DftSmtBuilder.h"
#include "src/exceptions/NotImplementedException.h" #include "src/exceptions/NotImplementedException.h"
namespace storm { namespace storm {

2
src/storm-dyftee.cpp

@ -117,6 +117,7 @@ int main(const int argc, const char** argv) {
parametric = generalSettings.isParametricSet(); parametric = generalSettings.isParametricSet();
#endif #endif
#ifdef STORM_HAVE_Z3
if (dftSettings.solveWithSMT()) { if (dftSettings.solveWithSMT()) {
// Solve with SMT // Solve with SMT
if (parametric) { if (parametric) {
@ -127,6 +128,7 @@ int main(const int argc, const char** argv) {
storm::utility::cleanUp(); storm::utility::cleanUp();
return 0; return 0;
} }
#endif
// Set min or max // Set min or max
bool minimal = true; bool minimal = true;

Loading…
Cancel
Save