0
3
0
... | ... |
@@ -36,9 +36,9 @@ |
36 | 36 |
using namespace lemon; |
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; |
44 | 44 |
... | ... |
@@ -23,15 +23,18 @@ |
23 | 23 |
///\file |
24 | 24 |
///\brief Tools for measuring cpu usage |
25 | 25 |
|
26 | 26 |
#ifdef WIN32 |
27 |
#define WIN32_LEAN_AND_MEAN |
|
28 |
#define NOMINMAX |
|
27 | 29 |
#include <windows.h> |
28 | 30 |
#include <cmath> |
29 | 31 |
#else |
30 | 32 |
#include <sys/times.h> |
31 | 33 |
#include <sys/time.h> |
32 | 34 |
#endif |
33 | 35 |
|
36 |
#include <string> |
|
34 | 37 |
#include <fstream> |
35 | 38 |
#include <iostream> |
36 | 39 |
|
37 | 40 |
namespace lemon { |
0 comments (0 inline)