STORM_LOG_THROW(error==0,storm::exceptions::InvalidStateException,"Unable to get Gurobi solution ("<<GRBgeterrormsg(env)<<", error code "<<error<<").");
STORM_LOG_THROW(std::abs(std::round(value)-value)<=storm::settings::getModule<storm::settings::modules::GurobiSettings>().getIntegerTolerance(),storm::exceptions::InvalidStateException,"Illegal value for integer variable in Gurobi solution ("<<value<<").");
STORM_LOG_ERROR_COND(diff<=storm::settings::getModule<storm::settings::modules::GurobiSettings>().getIntegerTolerance(),"Illegal value for integer variable in Gurobi solution ("<<value<<"). Difference to nearest int is "<<diff);
returnstatic_cast<int_fast64_t>(roundedValue);
}
template<typenameValueType>
@ -366,10 +367,10 @@ namespace storm {
STORM_LOG_THROW(error==0,storm::exceptions::InvalidStateException,"Unable to get Gurobi solution ("<<GRBgeterrormsg(env)<<", error code "<<error<<").");
if(value>0.5){
STORM_LOG_THROW(std::abs(value-1.0)<=storm::settings::getModule<storm::settings::modules::GurobiSettings>().getIntegerTolerance(),storm::exceptions::InvalidStateException,"Illegal value for integer variable in Gurobi solution ("<<value<<").");
STORM_LOG_ERROR_COND(std::abs(value-1.0)<=storm::settings::getModule<storm::settings::modules::GurobiSettings>().getIntegerTolerance(),"Illegal value for integer variable in Gurobi solution ("<<value<<").");
returntrue;
}else{
STORM_LOG_THROW(std::abs(value)<=storm::settings::getModule<storm::settings::modules::GurobiSettings>().getIntegerTolerance(),storm::exceptions::InvalidStateException,"Illegal value for integer variable in Gurobi solution ("<<value<<").");
STORM_LOG_ERROR_COND(std::abs(value)<=storm::settings::getModule<storm::settings::modules::GurobiSettings>().getIntegerTolerance(),"Illegal value for integer variable in Gurobi solution ("<<value<<").");
returnfalse;
}
}
@ -499,9 +500,10 @@ namespace storm {
STORM_LOG_THROW(error==0,storm::exceptions::InvalidStateException,"Unable to set Gurobi solution index ("<<GRBgeterrormsg(env)<<", error code "<<error<<").");
STORM_LOG_THROW(error==0,storm::exceptions::InvalidStateException,"Unable to get Gurobi solution ("<<GRBgeterrormsg(env)<<", error code "<<error<<").");
STORM_LOG_THROW(std::abs(std::round(value)-value)<=storm::settings::getModule<storm::settings::modules::GurobiSettings>().getIntegerTolerance(),storm::exceptions::InvalidStateException,"Illegal value for integer variable in Gurobi solution ("<<value<<").");
STORM_LOG_ERROR_COND(diff<=storm::settings::getModule<storm::settings::modules::GurobiSettings>().getIntegerTolerance(),"Illegal value for integer variable in Gurobi solution ("<<value<<"). Difference to nearest int is "<<diff);
returnstatic_cast<int_fast64_t>(roundedValue);
}
template<typenameValueType>
@ -523,10 +525,10 @@ namespace storm {
STORM_LOG_THROW(error==0,storm::exceptions::InvalidStateException,"Unable to get Gurobi solution ("<<GRBgeterrormsg(env)<<", error code "<<error<<").");
if(value>0.5){
STORM_LOG_THROW(std::abs(value-1)<=storm::settings::getModule<storm::settings::modules::GurobiSettings>().getIntegerTolerance(),storm::exceptions::InvalidStateException,"Illegal value for integer variable in Gurobi solution ("<<value<<").");
STORM_LOG_ERROR_COND(std::abs(value-1)<=storm::settings::getModule<storm::settings::modules::GurobiSettings>().getIntegerTolerance(),"Illegal value for integer variable in Gurobi solution ("<<value<<").");
returntrue;
}else{
STORM_LOG_THROW(std::abs(value)<=storm::settings::getModule<storm::settings::modules::GurobiSettings>().getIntegerTolerance(),storm::exceptions::InvalidStateException,"Illegal value for integer variable in Gurobi solution ("<<value<<").");
STORM_LOG_ERROR_COND(std::abs(value)<=storm::settings::getModule<storm::settings::modules::GurobiSettings>().getIntegerTolerance(),"Illegal value for integer variable in Gurobi solution ("<<value<<").");