Some checks failed
CI / check (push) Has been cancelled
Capture uncommitted solver robustness work (regularization, domain errors, linear solver lifecycle, tube DP/MSH), web workbench updates, and synced BMAD skills across IDE agent folders before starting BPHX pressure-drop. Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
839 B
Rust
28 lines
839 B
Rust
//! # Entropyk CLI
|
|
//!
|
|
//! Command-line interface for batch thermodynamic simulations.
|
|
//!
|
|
//! This crate provides the `entropyk-cli` binary for running thermodynamic
|
|
//! simulations from the command line, supporting both single simulations
|
|
//! and batch processing.
|
|
|
|
// Pre-existing lint debt accumulated before CI was introduced. Allowed so the
|
|
// new CI skeleton can enforce warnings-as-errors on new code.
|
|
#![allow(clippy::field_reassign_with_default)]
|
|
#![allow(clippy::wildcard_in_or_patterns)]
|
|
#![allow(clippy::unnecessary_get_then_check)]
|
|
#![allow(dead_code)]
|
|
|
|
pub mod batch;
|
|
pub mod config;
|
|
pub mod error;
|
|
pub mod export_fmu;
|
|
pub mod qualify;
|
|
pub mod rate;
|
|
pub mod run;
|
|
pub mod seasonal;
|
|
|
|
pub use batch::{BatchAggregator, BatchSummary, OutputFormat};
|
|
pub use config::ScenarioConfig;
|
|
pub use error::{CliError, CliResult, ExitCode};
|