rapier3d/counters/
solver_counters.rsuse crate::counters::Timer;
use std::fmt::{Display, Formatter, Result};
#[derive(Default, Clone, Copy)]
pub struct SolverCounters {
pub nconstraints: usize,
pub ncontacts: usize,
pub velocity_resolution_time: Timer,
pub velocity_assembly_time: Timer,
pub velocity_update_time: Timer,
pub velocity_writeback_time: Timer,
}
impl SolverCounters {
pub fn new() -> Self {
SolverCounters {
nconstraints: 0,
ncontacts: 0,
velocity_assembly_time: Timer::new(),
velocity_resolution_time: Timer::new(),
velocity_update_time: Timer::new(),
velocity_writeback_time: Timer::new(),
}
}
pub fn reset(&mut self) {
self.nconstraints = 0;
self.ncontacts = 0;
self.velocity_resolution_time.reset();
self.velocity_assembly_time.reset();
self.velocity_update_time.reset();
self.velocity_writeback_time.reset();
}
}
impl Display for SolverCounters {
fn fmt(&self, f: &mut Formatter) -> Result {
writeln!(f, "Number of contacts: {}", self.ncontacts)?;
writeln!(f, "Number of constraints: {}", self.nconstraints)?;
writeln!(f, "Velocity assembly time: {}", self.velocity_assembly_time)?;
writeln!(
f,
"Velocity resolution time: {}",
self.velocity_resolution_time
)?;
writeln!(f, "Velocity update time: {}", self.velocity_update_time)?;
writeln!(
f,
"Velocity writeback time: {}",
self.velocity_writeback_time
)
}
}