0_0_15971168_26867.cpp: In function 'int main()':
0_0_15971168_26867.cpp:55:38: error: call of overloaded 'abs(int64)' is ambiguous
d[i][j]=d[j][i]=getCost(abs(X[i]-X[j]));
^
0_0_15971168_26867.cpp:55:38: note: candidates are:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/assert.h:17:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/cassert:43,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:33,
from 0_0_15971168_26867.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/stdlib.h:329:15: note: int abs(int)
int __cdecl abs(int _X);
^
0_0_15971168_26867.cpp:19:14: note: int64 abs(int64)
inline int64 abs(int64 x){return x<0?-x:x;}
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:47:0,
from 0_0_15971168_26867.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/cstdlib:174:3: note: long long int std::abs(long long int)
abs(long long __x) { return __builtin_llabs (__x); }
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/cstdlib:166:3: note: long int std::abs(long int)
abs(long __i) { return __builtin_labs(__i); }
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:41:0,
from 0_0_15971168_26867.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/cmath:99:5: note: constexpr typename __gnu_cxx::__enable_if<std::__is_integer<_Tp>::__value, double>::__type std::abs(_Tp) [with _Tp = long long int; typename __gnu_cxx::__enable_if<std::__is_integer<_Tp>::__value, double>::__type = double]
abs(_Tp __x)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/cmath:91:3: note: constexpr long double std::abs(long double)
abs(long double __x)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/cmath:87:3: note: constexpr float std::abs(float)
abs(float __x)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/cmath:81:3: note: constexpr double std::abs(double)
abs(double __x)
^
|