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
fix dependencies
  • Loading branch information
prehner committed Nov 5, 2025
commit caacb26dd622436681414a0b570ef6fdf2460c29
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ approx = "0.5"
criterion = "0.7"
paste = "1.0"

feos-core = { version = "0.8", path = "crates/feos-core" }
feos-dft = { version = "0.8", path = "crates/feos-dft" }
feos-derive = { version = "0.6", path = "crates/feos-derive" }
feos = { version = "0.8", path = "crates/feos" }
feos-core = { version = "0.9", path = "crates/feos-core" }
feos-dft = { version = "0.9", path = "crates/feos-dft" }
feos-derive = { version = "0.9", path = "crates/feos-derive" }
feos = { version = "0.9", path = "crates/feos" }

[profile.release-lto]
inherits = "release"
Expand Down
9 changes: 2 additions & 7 deletions crates/feos-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,22 +45,17 @@ pub use phase_equilibria::{PhaseEquilibrium, TemperatureOrPressure};
pub use state::{Contributions, DensityInitialization, State, StateBuilder, StateHD, StateVec};

/// Level of detail in the iteration output.
#[derive(Copy, Clone, PartialOrd, PartialEq, Eq)]
#[derive(Copy, Clone, PartialOrd, PartialEq, Eq, Default)]
pub enum Verbosity {
/// Do not print output.
#[default]
None,
/// Print information about the success of failure of the iteration.
Result,
/// Print a detailed outpur for every iteration.
Iter,
}

impl Default for Verbosity {
fn default() -> Self {
Self::None
}
}

/// Options for the various phase equilibria solvers.
///
/// If the values are [None], solver specific default
Expand Down
1 change: 0 additions & 1 deletion crates/feos/src/pcsaft/eos/polar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ pub enum Multipole {
}

impl MeanSegmentNumbers {
#[expect(clippy::needless_range_loop)]
pub fn new(parameters: &PcSaftPars, polarity: Multipole) -> Self {
let (npoles, comp) = match polarity {
Multipole::Dipole => (parameters.ndipole, &parameters.dipole_comp),
Expand Down