LOG4CPLUS_ERROR(logger,"Variable "<<expression->getVariableName()<<" is unknown!");
}
STORM_LOG_THROW(variableToDeclMap.count(expression->getVariableName())!=0,storm::exceptions::InvalidArgumentException,"Variable '"<<expression->getVariableName()<<"' is unknown.");
LOG_THROW(false,storm::exceptions::NotImplementedException,"StoRM is compiled without MathSat support.");
STORM_LOG_THROW(false,storm::exceptions::NotImplementedException,"StoRM is compiled without MathSat support.");
#endif
}
@ -91,7 +91,7 @@ namespace storm {
}
returnthis->lastResult;
#else
LOG_THROW(false,storm::exceptions::NotImplementedException,"StoRM is compiled without MathSat support.");
STORM_LOG_THROW(false,storm::exceptions::NotImplementedException,"StoRM is compiled without MathSat support.");
#endif
}
@ -119,7 +119,7 @@ namespace storm {
}
returnthis->lastResult;
#else
LOG_THROW(false,storm::exceptions::NotImplementedException,"StoRM is compiled without MathSat support.");
STORM_LOG_THROW(false,storm::exceptions::NotImplementedException,"StoRM is compiled without MathSat support.");
#endif
}
@ -147,7 +147,7 @@ namespace storm {
}
returnthis->lastResult;
#else
LOG_THROW(false,storm::exceptions::NotImplementedException,"StoRM is compiled without MathSat support.");
STORM_LOG_THROW(false,storm::exceptions::NotImplementedException,"StoRM is compiled without MathSat support.");
#endif
}
@ -155,11 +155,11 @@ namespace storm {
{
#ifdef STORM_HAVE_MSAT
LOG_THROW(this->lastResult==SmtSolver::CheckResult::SAT,storm::exceptions::InvalidStateException,"Requested Model but last check result was not SAT.");
STORM_LOG_THROW(this->lastResult==SmtSolver::CheckResult::SAT,storm::exceptions::InvalidStateException,"Requested Model but last check result was not SAT.");
returnthis->MathSatModelToStorm();
#else
LOG_THROW(false,storm::exceptions::NotImplementedException,"StoRM is compiled without MathSat support.");
STORM_LOG_THROW(false,storm::exceptions::NotImplementedException,"StoRM is compiled without MathSat support.");