Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/remove hashmaps #7

Merged
merged 12 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@ Cargo.lock
*.pdb

.idea


dhat-heap.json
flamegraph.svg
perf.data*
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "meritrank"
version = "0.6.0"
version = "0.7.0"
edition = "2021"
description = "MeritRank algorithm library"
license = "MIT"
Expand All @@ -20,12 +20,12 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
rand = "0.8"
petgraph = "0.6.3"
once_cell = "1.8.0"
integer-hasher = "0.1.1"
intset = "1.0.2"
tinyset = "0.4.15"
indexmap = "2.2.6"
log = "0.4.22"

[dev-dependencies]
csv = "1.1.6"
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# MeritRank
MeritRank is a Rust library for computing merit scores and rankings in a directed graph.

Original `meritrank` is maintained by [Vladimir Radkevich](https://github.com/vsradkevich).
`meritrank` is maintained by [Intersubjective](https://github.com/intersubjective).

## Compilation options
- `MERITRANK_NO_ASSERT=1` - disable runtime asserts for better performance.
Loading