Skip to content

Commit 3ce5950

Browse files
committed
Removed println that was messing the output
1 parent cbe5dd0 commit 3ce5950

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/main/java/ldbc/socialnet/dbgen/generator/FlashmobPostGenerator.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ private int selectRandomTag( Random randomFlashmobTag, FlashmobTag[] tags, int i
132132
int upperBound = tags.length - 1;
133133
int lowerBound = index;
134134
double prob = randomFlashmobTag.nextDouble() * (tags[upperBound].prob - tags[lowerBound].prob) + tags[lowerBound].prob;
135-
//System.out.println(tags[upperBound].prob+" "+tags[lowerBound].prob+" "+prob);
136135
int midPoint = (upperBound + lowerBound) / 2;
137136
while (upperBound > (lowerBound+1)){
138137
if (tags[midPoint].prob > prob ){

src/main/java/ldbc/socialnet/dbgen/util/HadoopFileRanker.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ public void reduce(ComposedKey key, Iterable<V> valueSet,
116116
for( V v : valueSet ) {
117117
long rank = counters[reducerId] + i;
118118
context.write(new LongWritable(rank), v);
119-
System.out.println(reducerId+" "+rank);
120119
i++;
121120
}
122121
}

0 commit comments

Comments
 (0)