Added -fPIC to Sylvan. Since it is linked into Storm it is necessary for relocation to be possible, hence PIC.
Added includes for cmath at various points. This is a default include on Mac OS but not on any sane systems.
Changed calls to std::abs to std::fabs to resolve ambigious call errors.
Former-commit-id: 4d3da21bce
// Now check the desired precision was actually achieved.
STORM_LOG_THROW(std::abs(static_cast<int>(value)-value)<=storm::settings::getModule<storm::settings::modules::GlpkSettings>().getIntegerTolerance(),storm::exceptions::InvalidStateException,"Illegal value for integer variable in glpk solution ("<<value<<").");
STORM_LOG_THROW(std::fabs(static_cast<int>(value)-value)<=storm::settings::getModule<storm::settings::modules::GlpkSettings>().getIntegerTolerance(),storm::exceptions::InvalidStateException,"Illegal value for integer variable in glpk solution ("<<value<<").");
STORM_LOG_THROW(std::abs(static_cast<int>(value)-value)<=storm::settings::getModule<storm::settings::modules::GlpkSettings>().getIntegerTolerance(),storm::exceptions::InvalidStateException,"Illegal value for binary variable in glpk solution ("<<value<<").");
STORM_LOG_THROW(std::fabs(static_cast<int>(value)-value)<=storm::settings::getModule<storm::settings::modules::GlpkSettings>().getIntegerTolerance(),storm::exceptions::InvalidStateException,"Illegal value for binary variable in glpk solution ("<<value<<").");