libgrape-lite
A C++ library for parallel graph processing
|
a default parser for tsv files. More...
#include <tsv_line_parser.h>
Public Member Functions | |
virtual void | LineParserForEFile (const std::string &line, OID_T &u, OID_T &v, EDATA_T &e_data) |
parser of edge file, to parse source vertex_id, destination vertex_id from a line. More... | |
virtual void | LineParserForVFile (const std::string &line, OID_T &u, VDATA_T &u_data) |
parser of vertex file, to parse vertex_id and vertex_data from a string. More... | |
a default parser for tsv files.
OID_T | |
VDATA_T | |
EDATA_T |
|
inlinevirtual |
parser of edge file, to parse source vertex_id, destination vertex_id from a line.
line | |
u | |
v | |
e_data |
Implements grape::LineParserBase< OID_T, VDATA_T, EDATA_T >.
|
inlinevirtual |
parser of vertex file, to parse vertex_id and vertex_data from a string.
line | |
u | |
v_data |
Implements grape::LineParserBase< OID_T, VDATA_T, EDATA_T >.