pub struct LearningStatistics {
pub domains_inferred: usize,
pub predicates_inferred: usize,
pub constraints_inferred: usize,
pub hierarchies_inferred: usize,
pub dependencies_inferred: usize,
pub total_samples_analyzed: usize,
pub inference_time_ms: u128,
}Expand description
Statistics about the learning process.
Fields§
§domains_inferred: usize§predicates_inferred: usize§constraints_inferred: usize§hierarchies_inferred: usize§dependencies_inferred: usize§total_samples_analyzed: usize§inference_time_ms: u128Trait Implementations§
Source§impl Clone for LearningStatistics
impl Clone for LearningStatistics
Source§fn clone(&self) -> LearningStatistics
fn clone(&self) -> LearningStatistics
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LearningStatistics
impl Debug for LearningStatistics
Source§impl Default for LearningStatistics
impl Default for LearningStatistics
Source§fn default() -> LearningStatistics
fn default() -> LearningStatistics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LearningStatistics
impl RefUnwindSafe for LearningStatistics
impl Send for LearningStatistics
impl Sync for LearningStatistics
impl Unpin for LearningStatistics
impl UnwindSafe for LearningStatistics
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