[Lemon-commits] ladanyi: r3475 - lemon/trunk/benchmark
Lemon SVN
svn at lemon.cs.elte.hu
Sun Mar 2 23:55:28 CET 2008
Author: ladanyi
Date: Sun Mar 2 23:55:27 2008
New Revision: 3475
Modified:
lemon/trunk/benchmark/graph-bench.cc
Log:
Revert to long long int since currently I don't know a better solution.
Modified: lemon/trunk/benchmark/graph-bench.cc
==============================================================================
--- lemon/trunk/benchmark/graph-bench.cc (original)
+++ lemon/trunk/benchmark/graph-bench.cc Sun Mar 2 23:55:27 2008
@@ -43,7 +43,8 @@
//Edge equ[rat];
std::vector<Edge> equ(rat);
- long int count;
+ /// \bug There is no long long int type in C++98.
+ long 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