Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Use a single generic implementation for association across models
  • Loading branch information
prehner committed Jul 8, 2022
commit 2631c7c8d5669b51d0d9edfd143e39b31107eb54
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ optional = true
approx = "0.4"

[features]
default = []
default = ["pcsaft", "dft", "gc_pcsaft"]
dft = ["feos-dft", "petgraph", "feos-saft?/dft"]
estimator = []
pcsaft = ["feos-saft"]
gc_pcsaft = ["feos-saft"]
pcsaft = ["feos-saft/association"]
gc_pcsaft = ["feos-saft/association"]
uvtheory = ["lazy_static"]
pets = []
python = ["pyo3", "numpy", "feos-core/python", "feos-dft?/python", "feos-saft?/python"]
Expand Down
4 changes: 3 additions & 1 deletion feos-saft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ feos-core = { version = "0.3", path = "../feos-core" }
feos-dft = { version = "0.2", path = "../feos-dft", optional = true }
ndarray = { version = "0.15", features = ["serde"] }
pyo3 = { version = "0.16", optional = true }
serde = "1.0"

[features]
default = []
default = ["association"]
association = []
dft = ["feos-dft"]
python = ["pyo3"]
346 changes: 0 additions & 346 deletions feos-saft/src/fundamental_measure_theory.rs

This file was deleted.

Loading