Fix some MSVC compilation errors
diff --git a/demo/lgf_demo.cc b/demo/lgf_demo.cc
|
a
|
b
|
|
| 37 | 37 | |
| 38 | 38 | int main(int argc, const char *argv[]) { |
| 39 | 39 | const int n = argc > 1 ? std::atoi(argv[1]) : 20; |
| 40 | | const int e = argc > 2 ? std::atoi(argv[2]) : static_cast<int>(n * log(n)); |
| | 40 | const int e = argc > 2 ? std::atoi(argv[2]) : static_cast<int>(n * std::log(double(n))); |
| 41 | 41 | const int m = argc > 3 ? std::atoi(argv[3]) : 100; |
| 42 | 42 | |
| 43 | 43 | SmartDigraph digraph; |
diff --git a/lemon/graph_to_eps.h b/lemon/graph_to_eps.h
|
a
|
b
|
|
| 29 | 29 | #include<sys/time.h> |
| 30 | 30 | #include<ctime> |
| 31 | 31 | #else |
| | 32 | #define WIN32_LEAN_AND_MEAN |
| | 33 | #define NOMINMAX |
| 32 | 34 | #include<windows.h> |
| 33 | 35 | #endif |
| 34 | 36 | |