pub struct AgentSummary {
pub history_count: usize,
pub error_mean: f64,
pub error_std: f64,
pub convergence_rate: f64,
pub precision_energy: f64,
pub prediction_error: f64,
pub temperature: f64,
pub phase: FunnelPhase,
pub chirality: ChiralityState,
pub decay_rate: f64,
pub funnel_width: f64,
}Expand description
Summary of agent state for fleet reporting.
Fields§
§history_count: usize§error_mean: f64§error_std: f64§convergence_rate: f64§precision_energy: f64§prediction_error: f64§temperature: f64§phase: FunnelPhase§chirality: ChiralityState§decay_rate: f64§funnel_width: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for AgentSummary
impl RefUnwindSafe for AgentSummary
impl Send for AgentSummary
impl Sync for AgentSummary
impl Unpin for AgentSummary
impl UnsafeUnpin for AgentSummary
impl UnwindSafe for AgentSummary
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more