Github user spupyrev commented on a diff in the pull request:
https://github.com/apache/giraph/pull/82#discussion_r239884767
--- Diff:
giraph-examples/src/main/java/org/apache/giraph/examples/feature_diffusion_utils/datastructures/LabelingVertexValue.java
---
@@ -0,0 +1,79 @@
+package org.apache.giraph.examples.feature_diffusion_utils.datastructures;
+
+
+
+import org.apache.hadoop.io.Writable;
+
+import java.io.DataInput;
+import java.io.DataOutput;
+import java.io.IOException;
+import java.util.HashMap;
+
+public class LabelingVertexValue implements Writable {
+
+
+ protected long label;
+ protected int treshold;
+ protected boolean changed = false;
+ protected double temp;
--- End diff --
please use readable names for all variables/objects
---