Browse Source

Fixed compile errors concerning the handling of the STORM_HAVE_Z3 flag and a missing include in IRUtility.h

Should now compile again.


Former-commit-id: a72c906fb0
tempestpy_adaptions
masawei 11 years ago
parent
commit
1716c45ec5
  1. 2
      src/counterexamples/SMTMinimalCommandSetGenerator.h
  2. 1
      src/utility/IRUtility.h

2
src/counterexamples/SMTMinimalCommandSetGenerator.h

@ -16,10 +16,10 @@
// If we have Z3 available, we have to include the C++ header.
#ifdef STORM_HAVE_Z3
#include "z3++.h"
#include "src/adapters/Z3ExpressionAdapter.h"
#endif
#include "src/adapters/ExplicitModelAdapter.h"
#include "src/adapters/Z3ExpressionAdapter.h"
#include "src/modelchecker/prctl/SparseMdpPrctlModelChecker.h"
#include "src/solver/GmmxxNondeterministicLinearEquationSolver.h"

1
src/utility/IRUtility.h

@ -12,6 +12,7 @@
#include "src/storage/LabeledValues.h"
#include "src/ir/IR.h"
#include "src/exceptions/InvalidArgumentException.h"
#include "log4cplus/logger.h"
#include "log4cplus/loggingmacros.h"
Loading…
Cancel
Save