Browse Source

removed debug output

Former-commit-id: f9f58b55f4
tempestpy_adaptions
dehnert 9 years ago
parent
commit
94b817c531
  1. 2
      src/cli/cli.cpp
  2. 2
      src/solver/MathsatSmtSolver.cpp
  3. 1
      src/utility/storm.cpp

2
src/cli/cli.cpp

@ -231,7 +231,7 @@ namespace storm {
}
}
if (settings.isSymbolicSet()) {
#ifdef STORM_HAVE_CARL
if (settings.isParametricSet()) {

2
src/solver/MathsatSmtSolver.cpp

@ -408,7 +408,7 @@ namespace storm {
std::vector<storm::expressions::Expression> MathsatSmtSolver::getUnsatAssumptions() {
#ifdef STORM_HAVE_MSAT
STORM_LOG_THROW(lastResult == SmtSolver::CheckResult::Unsat, storm::exceptions::InvalidStateException, "Unable to generate unsatisfiable core of assumptions, because the last check did not determine the formulas to be unsatisfiable.")
STORM_LOG_THROW(lastResult == SmtSolver::CheckResult::Unsat, storm::exceptions::InvalidStateException, "Unable to generate unsatisfiable core of assumptions, because the last check did not determine the formulas to be unsatisfiable.");
STORM_LOG_THROW(lastCheckAssumptions, storm::exceptions::InvalidStateException, "Unable to generate unsatisfiable core of assumptions, because the last check did not involve assumptions.");
size_t numUnsatAssumpations;

1
src/utility/storm.cpp

@ -11,7 +11,6 @@ namespace storm {
storm::prism::Program parseProgram(std::string const& path) {
storm::prism::Program program= storm::parser::PrismParser::parse(path).simplify().simplify();
program.checkValidity();
std::cout << program << std::endl;
return program;
}

Loading…
Cancel
Save