# HG changeset patch # User Alpar Juttner # Date 1234541121 0 # Node ID 2a136de8e3f237136351eb1b8ba53e22410e11ee # Parent 9b9ffe7d9b75d733823b3a050edc5f387a80b634# Parent 06787db0ef5f32288363ad86b18510f48c1a8db5 Merge diff -r 9b9ffe7d9b75 -r 2a136de8e3f2 lemon/graph_to_eps.h --- a/lemon/graph_to_eps.h Fri Feb 13 13:29:28 2009 +0100 +++ b/lemon/graph_to_eps.h Fri Feb 13 16:05:21 2009 +0000 @@ -29,8 +29,12 @@ #include #include #else +#ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN +#endif +#ifndef NOMINMAX #define NOMINMAX +#endif #include #endif @@ -688,18 +692,30 @@ os << "%%CreationDate: " << cbuf; #else SYSTEMTIME time; - char buf1[11], buf2[9], buf3[5]; - GetSystemTime(&time); +#if defined(_MSC_VER) && (_MSC_VER < 1500) + LPWSTR buf1, buf2, buf3; if (GetDateFormat(LOCALE_USER_DEFAULT, 0, &time, - "ddd MMM dd", buf1, 11) && + L"ddd MMM dd", buf1, 11) && GetTimeFormat(LOCALE_USER_DEFAULT, 0, &time, - "HH':'mm':'ss", buf2, 9) && + L"HH':'mm':'ss", buf2, 9) && GetDateFormat(LOCALE_USER_DEFAULT, 0, &time, - "yyyy", buf3, 5)) { + L"yyyy", buf3, 5)) { os << "%%CreationDate: " << buf1 << ' ' << buf2 << ' ' << buf3 << std::endl; } +#else + char buf1[11], buf2[9], buf3[5]; + if (GetDateFormat(LOCALE_USER_DEFAULT, 0, &time, + "ddd MMM dd", buf1, 11) && + GetTimeFormat(LOCALE_USER_DEFAULT, 0, &time, + "HH':'mm':'ss", buf2, 9) && + GetDateFormat(LOCALE_USER_DEFAULT, 0, &time, + "yyyy", buf3, 5)) { + os << "%%CreationDate: " << buf1 << ' ' + << buf2 << ' ' << buf3 << std::endl; + } +#endif #endif } diff -r 9b9ffe7d9b75 -r 2a136de8e3f2 lemon/lp_base.cc --- a/lemon/lp_base.cc Fri Feb 13 13:29:28 2009 +0100 +++ b/lemon/lp_base.cc Fri Feb 13 16:05:21 2009 +0000 @@ -22,7 +22,9 @@ #include namespace lemon { - const LpBase::Value LpBase::INF = std::numeric_limits::infinity(); - const LpBase::Value LpBase::NaN = std::numeric_limits::quiet_NaN(); + const LpBase::Value LpBase::INF = + std::numeric_limits::infinity(); + const LpBase::Value LpBase::NaN = + std::numeric_limits::quiet_NaN(); } //namespace lemon diff -r 9b9ffe7d9b75 -r 2a136de8e3f2 lemon/lp_base.h --- a/lemon/lp_base.h Fri Feb 13 13:29:28 2009 +0100 +++ b/lemon/lp_base.h Fri Feb 13 16:05:21 2009 +0000 @@ -597,11 +597,11 @@ const Value &upperBound() const { return _ub; } ///Is the constraint lower bounded? bool lowerBounded() const { - return _lb != -INF && !isnan(_lb); + return _lb != -INF && !isNaN(_lb); } ///Is the constraint upper bounded? bool upperBounded() const { - return _ub != INF && !isnan(_ub); + return _ub != INF && !isNaN(_ub); } }; @@ -1666,7 +1666,7 @@ inline LpBase::Constr operator<=(const LpBase::Value &n, const LpBase::Constr &c) { LpBase::Constr tmp(c); - LEMON_ASSERT(isnan(tmp.lowerBound()), "Wrong LP constraint"); + LEMON_ASSERT(isNaN(tmp.lowerBound()), "Wrong LP constraint"); tmp.lowerBound()=n; return tmp; } @@ -1678,7 +1678,7 @@ const LpBase::Value &n) { LpBase::Constr tmp(c); - LEMON_ASSERT(isnan(tmp.upperBound()), "Wrong LP constraint"); + LEMON_ASSERT(isNaN(tmp.upperBound()), "Wrong LP constraint"); tmp.upperBound()=n; return tmp; } @@ -1690,7 +1690,7 @@ inline LpBase::Constr operator>=(const LpBase::Value &n, const LpBase::Constr &c) { LpBase::Constr tmp(c); - LEMON_ASSERT(isnan(tmp.upperBound()), "Wrong LP constraint"); + LEMON_ASSERT(isNaN(tmp.upperBound()), "Wrong LP constraint"); tmp.upperBound()=n; return tmp; } @@ -1702,7 +1702,7 @@ const LpBase::Value &n) { LpBase::Constr tmp(c); - LEMON_ASSERT(isnan(tmp.lowerBound()), "Wrong LP constraint"); + LEMON_ASSERT(isNaN(tmp.lowerBound()), "Wrong LP constraint"); tmp.lowerBound()=n; return tmp; } diff -r 9b9ffe7d9b75 -r 2a136de8e3f2 lemon/math.h --- a/lemon/math.h Fri Feb 13 13:29:28 2009 +0100 +++ b/lemon/math.h Fri Feb 13 16:05:21 2009 +0000 @@ -60,7 +60,7 @@ ///This function checks whether the parameter is NaN or not. ///Is should be equivalent with std::isnan(), but it is not ///provided by all compilers. - inline bool isnan(double v) + inline bool isNaN(double v) { return v!=v; } diff -r 9b9ffe7d9b75 -r 2a136de8e3f2 lemon/time_measure.h --- a/lemon/time_measure.h Fri Feb 13 13:29:28 2009 +0100 +++ b/lemon/time_measure.h Fri Feb 13 16:05:21 2009 +0000 @@ -24,11 +24,16 @@ ///\brief Tools for measuring cpu usage #ifdef WIN32 +#ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN +#endif +#ifndef NOMINMAX #define NOMINMAX +#endif #include #include #else +#include #include #include #endif