Read multi level graph to view

This commit is contained in:
Patrick Niklaus
2017-04-02 23:13:24 +00:00
committed by Patrick Niklaus
parent ef3fcdc6e6
commit 786a3d8919
2 changed files with 37 additions and 30 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ inline void read(storage::io::FileReader &reader, MultiLevelGraph<EdgeDataT, Own
{
reader.DeserializeVector(graph.node_array);
reader.DeserializeVector(graph.edge_array);
reader.DeserializeVector(graph.edge_to_level);
reader.DeserializeVector(graph.node_to_edge_offset);
}
template <typename EdgeDataT, storage::Ownership Ownership>