[Lemon-commits] ladanyi: r3473 - lemon/trunk/benchmark
Lemon SVN
svn at lemon.cs.elte.hu
Sat Mar 1 21:07:30 CET 2008
Author: ladanyi
Date: Sat Mar 1 21:07:29 2008
New Revision: 3473
Modified:
lemon/trunk/benchmark/graph-bench.cc
Log:
There is no 'long long int' type in C++98 (only in C99).
Modified: lemon/trunk/benchmark/graph-bench.cc
==============================================================================
--- lemon/trunk/benchmark/graph-bench.cc (original)
+++ lemon/trunk/benchmark/graph-bench.cc Sat Mar 1 21:07:29 2008
@@ -43,7 +43,7 @@
//Edge equ[rat];
std::vector<Edge> equ(rat);
- long long int count;
+ long int count;
for(count=0;count<rat;count++) {
equ[int(count%rat)]=G.addEdge(nodes[int((count*p)%n)],
More information about the Lemon-commits
mailing list