Skip to content

Commit

Permalink
fix spenso to 0.4.1 and add HedgeGraph
Browse files Browse the repository at this point in the history
  • Loading branch information
lcnbr committed Oct 26, 2024
1 parent 9689107 commit 86c997a
Show file tree
Hide file tree
Showing 15 changed files with 3,608 additions and 82 deletions.
174 changes: 120 additions & 54 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ criterion = { version = "0.5", features = ["html_reports"] }
[dependencies]
# These will be patched
symbolica = { version = "0.13.0" }
spenso = { version = "0.2.0", features = ["shadowing"] }
spenso = { version = "0.4.0", features = ["shadowing"] }

momtrop = { git = "https://github.com/alphal00p/momtrop", features = ["log"] }
serde = { version = "1.0", features = ["derive"] }
Expand Down Expand Up @@ -100,6 +100,8 @@ compensated-summation = "0.3.0"
uuid = { version = "1.10.0", features = ["serde", "v4"] }
serde_with = "3.9.0"
insta = { version = "1.40.0", features = ["ron", "toml"] }
bitvec = { version = "1.0.1", features = ["serde"] }
pathfinding = "4.11.0"

[dependencies.pyo3]
features = ["multiple-pymethods"]
Expand Down Expand Up @@ -130,5 +132,5 @@ fail-on-warnings = []

[patch.crates-io]
symbolica = { path = "./python/gammaloop/dependencies/symbolica" }
# spenso = { path = "../../alphal00p/spenso" }
spenso = { git = "https://github.com/alphal00p/spenso", branch = "master" }
spenso = { path = "../../alphal00p/spenso" }
# spenso = { git = "https://github.com/alphal00p/spenso", branch = "master" }
2 changes: 1 addition & 1 deletion src/graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ use symbolica::{
symb,
};
//use symbolica::{atom::Symbol,state::State};

pub mod half_edge;
#[derive(Debug, Default, Clone, Copy, Serialize, Deserialize, PartialEq)]
pub enum EdgeType {
#[serde(rename = "in")]
Expand Down
Loading

0 comments on commit 86c997a

Please sign in to comment.