fips_md/runtime/interaction.rs
1//! Structures related to interaction runtime information
2
3pub struct InteractionDetails {
4 /// Number of worker threads for neighbor list construction
5 pub num_workers: usize,
6 /// Skin factor (this factor is multiplied to the cutoff region to guarantee
7 /// the correctness of the neighbor list for more than one tick)
8 pub skin_factor: f64,
9 /// Explicit cell size
10 pub cell_size: Option<f64>,
11 /// The neighbor list is rebuild after this number of time steps
12 pub rebuild_interval: usize
13}