Author: edwardyoon
Date: Fri Mar 7 01:56:14 2014
New Revision: 1575119
URL: http://svn.apache.org/r1575119
Log:
update comments
Modified:
hama/trunk/src/site/xdoc/hama_graph_tutorial.xml
Modified: hama/trunk/src/site/xdoc/hama_graph_tutorial.xml
URL:
http://svn.apache.org/viewvc/hama/trunk/src/site/xdoc/hama_graph_tutorial.xml?rev=1575119&r1=1575118&r2=1575119&view=diff
==============================================================================
--- hama/trunk/src/site/xdoc/hama_graph_tutorial.xml (original)
+++ hama/trunk/src/site/xdoc/hama_graph_tutorial.xml Fri Mar 7 01:56:14 2014
@@ -42,7 +42,7 @@ xsi:schemaLocation="http://maven.apache.
<p>The user overrides the Compute() method, which will be executed at each
active vertex in every superstep. Predefined Vertex methods allow Compute() to
query information about the current vertex and its edges, and to send messages
to other vertices. Compute() can inspect the value associated with its vertex
via GetValue().</p>
<subsection name="Vertex Reader and Writer"></subsection>
- <p>Hama Graph provides very flexible input and output options. You can
create your own VertexReader for your data format by exending
org.apache.hama.graph.<b>VertexInputReader</b> class.
+ <p>Hama Graph provides very flexible input and output options, allows
allows to extract Vertex from your data without any pre-processing. You can
create your own VertexReader for your data format by exending
org.apache.hama.graph.<b>VertexInputReader</b> class.
For example, an sequence file contains a linked list of Vertex, can be
parse as following:
</p>