COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
03/02/07 19:04:28 (17 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3217
Message:

Hard Warning checking

  • based on the remark of the ZIB user
  • we do not use -Winline
File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/all_pairs_shortest_path_test.cc

    r2335 r2386  
    4949
    5050  const int n = argc > 1 ? atoi(argv[1]) : 20;
    51   const int e = argc > 2 ? atoi(argv[2]) : (int)(n * log((double)n));
     51  const int e = argc > 2 ? atoi(argv[2]) : int(n * log(double(n)));
    5252  const int m = argc > 3 ? atoi(argv[3]) : 100;
    5353
Note: See TracChangeset for help on using the changeset viewer.