@@ -72,7 +72,7 @@ bitstream containing pointers into the graph bitstream).
7272
7373As a first step, if you need random access to the successors of a node, you need
7474to build an [ Elias–Fano] representation of the offsets (this part can be skipped
75- if you just need sequential access). There is a [ CLI command ` webgraph ` ] with many
75+ if you just need sequential access). There is a [ command-line interface ] with many
7676subcommands, among which ` build ` , and ` webgraph build ef BASENAME ` will build
7777the representation for you, serializing it with [ ε-serde] in a file
7878named ` BASENAME.ef ` .
@@ -160,7 +160,7 @@ very large graphs, the mapping might not fit in RAM. For example,
160160``` bash
161161echo -e " a\tb\nb\tc\nc\ta" > graph.tsv
162162# convert to bvgraph
163- cat graph.tsv | cargo run --release from arcs --label graph
163+ cat graph.tsv | cargo run --release from arcs --labels graph
164164```
165165
166166The graph can be converted back in the arcs format using the ` to arcs ` command.
@@ -206,7 +206,7 @@ Union nor the Italian MUR can be held responsible for them.
206206[ iteration ] : https://docs.rs/webgraph/latest/webgraph/traits/labels/trait.SequentialLabeling.html#method.iter
207207[ retrieve the successors of a node ] : https://docs.rs/webgraph/latest/webgraph/traits/graph/trait.RandomAccessGraph.html#method.successors
208208[ LAW web site ] : http://law.di.unimi.it/
209- [ Elias–Fano ] : sux:: dict:: EliasFano
209+ [ Elias–Fano ] : https://docs.rs/sux/latest/sux/ dict/elias_fano/struct. EliasFano.html
210210[ WebGraph framework ] : https://webgraph.di.unimi.it/
211211[ ε-serde ] : https://crates.io/crates/epserde/
212212[ `for_` ] : https://docs.rs/lender/latest/lender/macro.for_.html
0 commit comments