├── .cargo └── config.toml ├── .github └── workflows │ ├── build_artifact.yml │ ├── llp.yml │ └── rust.yml ├── .gitignore ├── .mailmap ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE-Apache-2.0 ├── LICENSE-LGPL-2.1-or-later ├── README.md ├── algo ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── src │ ├── acyclicity.rs │ ├── distances │ │ ├── exact_sum_sweep │ │ │ ├── computer.rs │ │ │ ├── level.rs │ │ │ ├── mod.rs │ │ │ ├── output.rs │ │ │ ├── output_symm.rs │ │ │ └── scc_graph.rs │ │ ├── hyperball.rs │ │ └── mod.rs │ ├── lib.rs │ ├── llp │ │ ├── gap_cost.rs │ │ ├── label_store.rs │ │ ├── mix64.rs │ │ ├── mod.rs │ │ └── preds.rs │ ├── sccs │ │ ├── kosaraju.rs │ │ ├── mod.rs │ │ ├── symm_par.rs │ │ ├── symm_seq.rs │ │ └── tarjan.rs │ ├── top_sort.rs │ └── utils │ │ ├── argmax.rs │ │ ├── argmin.rs │ │ └── mod.rs └── tests │ ├── test_asyc_top_sort.rs │ ├── test_exact_sum_sweep.rs │ ├── test_math.rs │ └── test_sccs.rs ├── cli ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── build.rs ├── src │ ├── analyze │ │ ├── codes.rs │ │ └── mod.rs │ ├── bench │ │ ├── bf_visit.rs │ │ ├── bvgraph.rs │ │ └── mod.rs │ ├── bin │ │ ├── webgraph-dist.rs │ │ └── webgraph-sccs.rs │ ├── build │ │ ├── dcf.rs │ │ ├── ef.rs │ │ ├── mod.rs │ │ └── offsets.rs │ ├── check │ │ ├── ef.rs │ │ ├── eq.rs │ │ └── mod.rs │ ├── common_env.txt │ ├── common_ps.txt │ ├── dist │ │ ├── ess │ │ │ └── mod.rs │ │ ├── hyperball │ │ │ └── mod.rs │ │ └── mod.rs │ ├── from │ │ ├── arcs.rs │ │ └── mod.rs │ ├── lib.rs │ ├── main.rs │ ├── perm │ │ ├── bfs.rs │ │ ├── comp.rs │ │ ├── mod.rs │ │ └── rand.rs │ ├── run │ │ ├── llp.rs │ │ ├── llp_combine.rs │ │ ├── mod.rs │ │ └── pad.rs │ ├── sccs.rs │ ├── to │ │ ├── arcs.rs │ │ ├── ascii.rs │ │ ├── bvgraph.rs │ │ ├── endianness.rs │ │ └── mod.rs │ └── transform │ │ ├── mod.rs │ │ ├── simplify.rs │ │ └── transpose.rs └── tests │ └── test_llp_pipeline.rs ├── data ├── .gitignore ├── cnr-2000-t.dcf ├── cnr-2000-t.ef ├── cnr-2000-t.graph ├── cnr-2000-t.offsets ├── cnr-2000-t.properties ├── cnr-2000.dcf ├── cnr-2000.ef ├── cnr-2000.graph ├── cnr-2000.offsets ├── cnr-2000.properties ├── cnr-2000.scc ├── cnr-2000.sccsizes ├── cnr-2000_edges.txt ├── test.ef ├── test.graph └── test.properties ├── flake.lock ├── flake.nix └── webgraph ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── coverage.py ├── examples ├── bench_sort_pairs.rs ├── bench_swh_labels.rs ├── bench_unit_graph.rs ├── bench_unit_transpose.rs ├── bfs.rs ├── custom_codes.rs ├── custom_codes_bfs.rs └── print.rs ├── fuzz ├── .gitignore ├── Cargo.toml └── fuzz_targets │ ├── bvcomp_and_read.rs │ └── roundtrip.rs ├── src ├── fuzz │ ├── bvcomp_and_read.rs │ ├── mod.rs │ ├── roundtrip.rs │ └── utils.rs ├── graphs │ ├── arc_list_graph.rs │ ├── btree_graph.rs │ ├── bvgraph │ │ ├── codecs │ │ │ ├── dec_const.rs │ │ │ ├── dec_dbg.rs │ │ │ ├── dec_dyn.rs │ │ │ ├── dec_stats.rs │ │ │ ├── enc_const.rs │ │ │ ├── enc_dyn.rs │ │ │ ├── factories.rs │ │ │ └── mod.rs │ │ ├── comp │ │ │ ├── bvcomp.rs │ │ │ ├── bvcompz.rs │ │ │ ├── flags.rs │ │ │ ├── impls.rs │ │ │ └── mod.rs │ │ ├── load.rs │ │ ├── masked_iterator.rs │ │ ├── mod.rs │ │ ├── offset_deg_iter.rs │ │ ├── random_access.rs │ │ └── sequential.rs │ ├── csr_graph.rs │ ├── mod.rs │ ├── no_selfloops_graph.rs │ ├── permuted_graph.rs │ ├── random │ │ ├── er.rs │ │ └── mod.rs │ ├── union_graph.rs │ └── vec_graph.rs ├── labels │ ├── bitstream.rs │ ├── mod.rs │ ├── proj.rs │ └── zip.rs ├── lib.rs ├── traits │ ├── graph.rs │ ├── labels.rs │ ├── lenders.rs │ ├── mod.rs │ ├── par_map_fold.rs │ ├── serde.rs │ └── split.rs ├── transform │ ├── mod.rs │ ├── perm.rs │ ├── simplify.rs │ └── transpose.rs ├── utils │ ├── batch_codec │ │ ├── gaps.rs │ │ ├── grouped_gaps.rs │ │ └── mod.rs │ ├── circular_buffer.rs │ ├── granularity.rs │ ├── java_perm.rs │ ├── matrix.rs │ ├── mmap_helper.rs │ ├── mod.rs │ ├── par_sort_iters.rs │ ├── par_sort_pairs.rs │ └── sort_pairs.rs └── visits │ ├── breadth_first │ ├── mod.rs │ ├── par_fair.rs │ ├── par_low_mem.rs │ └── seq.rs │ ├── depth_first │ ├── mod.rs │ └── seq.rs │ └── mod.rs └── tests ├── corpus └── bvcomp_and_read.zip ├── test_arc_list_graph.rs ├── test_breadth_first.rs ├── test_btree_graph.rs ├── test_bvcomp.rs ├── test_csr_graph.rs ├── test_depth_first.rs ├── test_fuzz.rs ├── test_iter.rs ├── test_labels_graphs.rs ├── test_lenders.rs ├── test_offsets.rs ├── test_par_bvcomp.rs ├── test_perm_graph.rs ├── test_proj.rs ├── test_regression_le.rs ├── test_transpose.rs ├── test_vec_graph.rs └── test_zip.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.github/workflows/build_artifact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/.github/workflows/build_artifact.yml -------------------------------------------------------------------------------- /.github/workflows/llp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/.github/workflows/llp.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-Apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/LICENSE-Apache-2.0 -------------------------------------------------------------------------------- /LICENSE-LGPL-2.1-or-later: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/LICENSE-LGPL-2.1-or-later -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/README.md -------------------------------------------------------------------------------- /algo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/CHANGELOG.md -------------------------------------------------------------------------------- /algo/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/Cargo.toml -------------------------------------------------------------------------------- /algo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/README.md -------------------------------------------------------------------------------- /algo/src/acyclicity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/acyclicity.rs -------------------------------------------------------------------------------- /algo/src/distances/exact_sum_sweep/computer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/distances/exact_sum_sweep/computer.rs -------------------------------------------------------------------------------- /algo/src/distances/exact_sum_sweep/level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/distances/exact_sum_sweep/level.rs -------------------------------------------------------------------------------- /algo/src/distances/exact_sum_sweep/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/distances/exact_sum_sweep/mod.rs -------------------------------------------------------------------------------- /algo/src/distances/exact_sum_sweep/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/distances/exact_sum_sweep/output.rs -------------------------------------------------------------------------------- /algo/src/distances/exact_sum_sweep/output_symm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/distances/exact_sum_sweep/output_symm.rs -------------------------------------------------------------------------------- /algo/src/distances/exact_sum_sweep/scc_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/distances/exact_sum_sweep/scc_graph.rs -------------------------------------------------------------------------------- /algo/src/distances/hyperball.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/distances/hyperball.rs -------------------------------------------------------------------------------- /algo/src/distances/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/distances/mod.rs -------------------------------------------------------------------------------- /algo/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/lib.rs -------------------------------------------------------------------------------- /algo/src/llp/gap_cost.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/llp/gap_cost.rs -------------------------------------------------------------------------------- /algo/src/llp/label_store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/llp/label_store.rs -------------------------------------------------------------------------------- /algo/src/llp/mix64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/llp/mix64.rs -------------------------------------------------------------------------------- /algo/src/llp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/llp/mod.rs -------------------------------------------------------------------------------- /algo/src/llp/preds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/llp/preds.rs -------------------------------------------------------------------------------- /algo/src/sccs/kosaraju.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/sccs/kosaraju.rs -------------------------------------------------------------------------------- /algo/src/sccs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/sccs/mod.rs -------------------------------------------------------------------------------- /algo/src/sccs/symm_par.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/sccs/symm_par.rs -------------------------------------------------------------------------------- /algo/src/sccs/symm_seq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/sccs/symm_seq.rs -------------------------------------------------------------------------------- /algo/src/sccs/tarjan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/sccs/tarjan.rs -------------------------------------------------------------------------------- /algo/src/top_sort.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/top_sort.rs -------------------------------------------------------------------------------- /algo/src/utils/argmax.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/utils/argmax.rs -------------------------------------------------------------------------------- /algo/src/utils/argmin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/utils/argmin.rs -------------------------------------------------------------------------------- /algo/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/src/utils/mod.rs -------------------------------------------------------------------------------- /algo/tests/test_asyc_top_sort.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/tests/test_asyc_top_sort.rs -------------------------------------------------------------------------------- /algo/tests/test_exact_sum_sweep.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/tests/test_exact_sum_sweep.rs -------------------------------------------------------------------------------- /algo/tests/test_math.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/tests/test_math.rs -------------------------------------------------------------------------------- /algo/tests/test_sccs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/algo/tests/test_sccs.rs -------------------------------------------------------------------------------- /cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/CHANGELOG.md -------------------------------------------------------------------------------- /cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/Cargo.toml -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/build.rs -------------------------------------------------------------------------------- /cli/src/analyze/codes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/analyze/codes.rs -------------------------------------------------------------------------------- /cli/src/analyze/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/analyze/mod.rs -------------------------------------------------------------------------------- /cli/src/bench/bf_visit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/bench/bf_visit.rs -------------------------------------------------------------------------------- /cli/src/bench/bvgraph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/bench/bvgraph.rs -------------------------------------------------------------------------------- /cli/src/bench/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/bench/mod.rs -------------------------------------------------------------------------------- /cli/src/bin/webgraph-dist.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/bin/webgraph-dist.rs -------------------------------------------------------------------------------- /cli/src/bin/webgraph-sccs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/bin/webgraph-sccs.rs -------------------------------------------------------------------------------- /cli/src/build/dcf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/build/dcf.rs -------------------------------------------------------------------------------- /cli/src/build/ef.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/build/ef.rs -------------------------------------------------------------------------------- /cli/src/build/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/build/mod.rs -------------------------------------------------------------------------------- /cli/src/build/offsets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/build/offsets.rs -------------------------------------------------------------------------------- /cli/src/check/ef.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/check/ef.rs -------------------------------------------------------------------------------- /cli/src/check/eq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/check/eq.rs -------------------------------------------------------------------------------- /cli/src/check/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/check/mod.rs -------------------------------------------------------------------------------- /cli/src/common_env.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/common_env.txt -------------------------------------------------------------------------------- /cli/src/common_ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/common_ps.txt -------------------------------------------------------------------------------- /cli/src/dist/ess/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/dist/ess/mod.rs -------------------------------------------------------------------------------- /cli/src/dist/hyperball/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/dist/hyperball/mod.rs -------------------------------------------------------------------------------- /cli/src/dist/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/dist/mod.rs -------------------------------------------------------------------------------- /cli/src/from/arcs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/from/arcs.rs -------------------------------------------------------------------------------- /cli/src/from/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/from/mod.rs -------------------------------------------------------------------------------- /cli/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/lib.rs -------------------------------------------------------------------------------- /cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/main.rs -------------------------------------------------------------------------------- /cli/src/perm/bfs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/perm/bfs.rs -------------------------------------------------------------------------------- /cli/src/perm/comp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/perm/comp.rs -------------------------------------------------------------------------------- /cli/src/perm/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/perm/mod.rs -------------------------------------------------------------------------------- /cli/src/perm/rand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/perm/rand.rs -------------------------------------------------------------------------------- /cli/src/run/llp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/run/llp.rs -------------------------------------------------------------------------------- /cli/src/run/llp_combine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/run/llp_combine.rs -------------------------------------------------------------------------------- /cli/src/run/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/run/mod.rs -------------------------------------------------------------------------------- /cli/src/run/pad.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/run/pad.rs -------------------------------------------------------------------------------- /cli/src/sccs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/sccs.rs -------------------------------------------------------------------------------- /cli/src/to/arcs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/to/arcs.rs -------------------------------------------------------------------------------- /cli/src/to/ascii.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/to/ascii.rs -------------------------------------------------------------------------------- /cli/src/to/bvgraph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/to/bvgraph.rs -------------------------------------------------------------------------------- /cli/src/to/endianness.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/to/endianness.rs -------------------------------------------------------------------------------- /cli/src/to/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/to/mod.rs -------------------------------------------------------------------------------- /cli/src/transform/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/transform/mod.rs -------------------------------------------------------------------------------- /cli/src/transform/simplify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/transform/simplify.rs -------------------------------------------------------------------------------- /cli/src/transform/transpose.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/src/transform/transpose.rs -------------------------------------------------------------------------------- /cli/tests/test_llp_pipeline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/cli/tests/test_llp_pipeline.rs -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/cnr-2000-t.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/cnr-2000-t.dcf -------------------------------------------------------------------------------- /data/cnr-2000-t.ef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/cnr-2000-t.ef -------------------------------------------------------------------------------- /data/cnr-2000-t.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/cnr-2000-t.graph -------------------------------------------------------------------------------- /data/cnr-2000-t.offsets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/cnr-2000-t.offsets -------------------------------------------------------------------------------- /data/cnr-2000-t.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/cnr-2000-t.properties -------------------------------------------------------------------------------- /data/cnr-2000.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/cnr-2000.dcf -------------------------------------------------------------------------------- /data/cnr-2000.ef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/cnr-2000.ef -------------------------------------------------------------------------------- /data/cnr-2000.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/cnr-2000.graph -------------------------------------------------------------------------------- /data/cnr-2000.offsets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/cnr-2000.offsets -------------------------------------------------------------------------------- /data/cnr-2000.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/cnr-2000.properties -------------------------------------------------------------------------------- /data/cnr-2000.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/cnr-2000.scc -------------------------------------------------------------------------------- /data/cnr-2000.sccsizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/cnr-2000.sccsizes -------------------------------------------------------------------------------- /data/cnr-2000_edges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/cnr-2000_edges.txt -------------------------------------------------------------------------------- /data/test.ef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/test.ef -------------------------------------------------------------------------------- /data/test.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/test.graph -------------------------------------------------------------------------------- /data/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/data/test.properties -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/flake.nix -------------------------------------------------------------------------------- /webgraph/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/CHANGELOG.md -------------------------------------------------------------------------------- /webgraph/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/Cargo.toml -------------------------------------------------------------------------------- /webgraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/README.md -------------------------------------------------------------------------------- /webgraph/coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/coverage.py -------------------------------------------------------------------------------- /webgraph/examples/bench_sort_pairs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/examples/bench_sort_pairs.rs -------------------------------------------------------------------------------- /webgraph/examples/bench_swh_labels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/examples/bench_swh_labels.rs -------------------------------------------------------------------------------- /webgraph/examples/bench_unit_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/examples/bench_unit_graph.rs -------------------------------------------------------------------------------- /webgraph/examples/bench_unit_transpose.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/examples/bench_unit_transpose.rs -------------------------------------------------------------------------------- /webgraph/examples/bfs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/examples/bfs.rs -------------------------------------------------------------------------------- /webgraph/examples/custom_codes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/examples/custom_codes.rs -------------------------------------------------------------------------------- /webgraph/examples/custom_codes_bfs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/examples/custom_codes_bfs.rs -------------------------------------------------------------------------------- /webgraph/examples/print.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/examples/print.rs -------------------------------------------------------------------------------- /webgraph/fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | corpus 3 | artifacts 4 | coverage 5 | -------------------------------------------------------------------------------- /webgraph/fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/fuzz/Cargo.toml -------------------------------------------------------------------------------- /webgraph/fuzz/fuzz_targets/bvcomp_and_read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/fuzz/fuzz_targets/bvcomp_and_read.rs -------------------------------------------------------------------------------- /webgraph/fuzz/fuzz_targets/roundtrip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/fuzz/fuzz_targets/roundtrip.rs -------------------------------------------------------------------------------- /webgraph/src/fuzz/bvcomp_and_read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/fuzz/bvcomp_and_read.rs -------------------------------------------------------------------------------- /webgraph/src/fuzz/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/fuzz/mod.rs -------------------------------------------------------------------------------- /webgraph/src/fuzz/roundtrip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/fuzz/roundtrip.rs -------------------------------------------------------------------------------- /webgraph/src/fuzz/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/fuzz/utils.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/arc_list_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/arc_list_graph.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/btree_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/btree_graph.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/codecs/dec_const.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/codecs/dec_const.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/codecs/dec_dbg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/codecs/dec_dbg.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/codecs/dec_dyn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/codecs/dec_dyn.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/codecs/dec_stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/codecs/dec_stats.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/codecs/enc_const.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/codecs/enc_const.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/codecs/enc_dyn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/codecs/enc_dyn.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/codecs/factories.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/codecs/factories.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/codecs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/codecs/mod.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/comp/bvcomp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/comp/bvcomp.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/comp/bvcompz.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/comp/bvcompz.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/comp/flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/comp/flags.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/comp/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/comp/impls.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/comp/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/comp/mod.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/load.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/load.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/masked_iterator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/masked_iterator.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/mod.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/offset_deg_iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/offset_deg_iter.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/random_access.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/random_access.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/bvgraph/sequential.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/bvgraph/sequential.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/csr_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/csr_graph.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/mod.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/no_selfloops_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/no_selfloops_graph.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/permuted_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/permuted_graph.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/random/er.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/random/er.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/random/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/random/mod.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/union_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/union_graph.rs -------------------------------------------------------------------------------- /webgraph/src/graphs/vec_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/graphs/vec_graph.rs -------------------------------------------------------------------------------- /webgraph/src/labels/bitstream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/labels/bitstream.rs -------------------------------------------------------------------------------- /webgraph/src/labels/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/labels/mod.rs -------------------------------------------------------------------------------- /webgraph/src/labels/proj.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/labels/proj.rs -------------------------------------------------------------------------------- /webgraph/src/labels/zip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/labels/zip.rs -------------------------------------------------------------------------------- /webgraph/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/lib.rs -------------------------------------------------------------------------------- /webgraph/src/traits/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/traits/graph.rs -------------------------------------------------------------------------------- /webgraph/src/traits/labels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/traits/labels.rs -------------------------------------------------------------------------------- /webgraph/src/traits/lenders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/traits/lenders.rs -------------------------------------------------------------------------------- /webgraph/src/traits/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/traits/mod.rs -------------------------------------------------------------------------------- /webgraph/src/traits/par_map_fold.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/traits/par_map_fold.rs -------------------------------------------------------------------------------- /webgraph/src/traits/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/traits/serde.rs -------------------------------------------------------------------------------- /webgraph/src/traits/split.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/traits/split.rs -------------------------------------------------------------------------------- /webgraph/src/transform/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/transform/mod.rs -------------------------------------------------------------------------------- /webgraph/src/transform/perm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/transform/perm.rs -------------------------------------------------------------------------------- /webgraph/src/transform/simplify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/transform/simplify.rs -------------------------------------------------------------------------------- /webgraph/src/transform/transpose.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/transform/transpose.rs -------------------------------------------------------------------------------- /webgraph/src/utils/batch_codec/gaps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/utils/batch_codec/gaps.rs -------------------------------------------------------------------------------- /webgraph/src/utils/batch_codec/grouped_gaps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/utils/batch_codec/grouped_gaps.rs -------------------------------------------------------------------------------- /webgraph/src/utils/batch_codec/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/utils/batch_codec/mod.rs -------------------------------------------------------------------------------- /webgraph/src/utils/circular_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/utils/circular_buffer.rs -------------------------------------------------------------------------------- /webgraph/src/utils/granularity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/utils/granularity.rs -------------------------------------------------------------------------------- /webgraph/src/utils/java_perm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/utils/java_perm.rs -------------------------------------------------------------------------------- /webgraph/src/utils/matrix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/utils/matrix.rs -------------------------------------------------------------------------------- /webgraph/src/utils/mmap_helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/utils/mmap_helper.rs -------------------------------------------------------------------------------- /webgraph/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/utils/mod.rs -------------------------------------------------------------------------------- /webgraph/src/utils/par_sort_iters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/utils/par_sort_iters.rs -------------------------------------------------------------------------------- /webgraph/src/utils/par_sort_pairs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/utils/par_sort_pairs.rs -------------------------------------------------------------------------------- /webgraph/src/utils/sort_pairs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/utils/sort_pairs.rs -------------------------------------------------------------------------------- /webgraph/src/visits/breadth_first/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/visits/breadth_first/mod.rs -------------------------------------------------------------------------------- /webgraph/src/visits/breadth_first/par_fair.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/visits/breadth_first/par_fair.rs -------------------------------------------------------------------------------- /webgraph/src/visits/breadth_first/par_low_mem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/visits/breadth_first/par_low_mem.rs -------------------------------------------------------------------------------- /webgraph/src/visits/breadth_first/seq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/visits/breadth_first/seq.rs -------------------------------------------------------------------------------- /webgraph/src/visits/depth_first/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/visits/depth_first/mod.rs -------------------------------------------------------------------------------- /webgraph/src/visits/depth_first/seq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/visits/depth_first/seq.rs -------------------------------------------------------------------------------- /webgraph/src/visits/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/src/visits/mod.rs -------------------------------------------------------------------------------- /webgraph/tests/corpus/bvcomp_and_read.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/corpus/bvcomp_and_read.zip -------------------------------------------------------------------------------- /webgraph/tests/test_arc_list_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_arc_list_graph.rs -------------------------------------------------------------------------------- /webgraph/tests/test_breadth_first.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_breadth_first.rs -------------------------------------------------------------------------------- /webgraph/tests/test_btree_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_btree_graph.rs -------------------------------------------------------------------------------- /webgraph/tests/test_bvcomp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_bvcomp.rs -------------------------------------------------------------------------------- /webgraph/tests/test_csr_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_csr_graph.rs -------------------------------------------------------------------------------- /webgraph/tests/test_depth_first.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_depth_first.rs -------------------------------------------------------------------------------- /webgraph/tests/test_fuzz.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_fuzz.rs -------------------------------------------------------------------------------- /webgraph/tests/test_iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_iter.rs -------------------------------------------------------------------------------- /webgraph/tests/test_labels_graphs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_labels_graphs.rs -------------------------------------------------------------------------------- /webgraph/tests/test_lenders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_lenders.rs -------------------------------------------------------------------------------- /webgraph/tests/test_offsets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_offsets.rs -------------------------------------------------------------------------------- /webgraph/tests/test_par_bvcomp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_par_bvcomp.rs -------------------------------------------------------------------------------- /webgraph/tests/test_perm_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_perm_graph.rs -------------------------------------------------------------------------------- /webgraph/tests/test_proj.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_proj.rs -------------------------------------------------------------------------------- /webgraph/tests/test_regression_le.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_regression_le.rs -------------------------------------------------------------------------------- /webgraph/tests/test_transpose.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_transpose.rs -------------------------------------------------------------------------------- /webgraph/tests/test_vec_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_vec_graph.rs -------------------------------------------------------------------------------- /webgraph/tests/test_zip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigna/webgraph-rs/HEAD/webgraph/tests/test_zip.rs --------------------------------------------------------------------------------