pub struct BenchmarkResult {
Show 46 fields pub time: f32, pub nodes_count: u64, pub q_nodes_count: u64, pub leafs_count: u64, pub q_leafs_count: u64, pub beta_cutoffs: u64, pub q_beta_cutoffs: u64, pub q_perfect_cutoffs: u64, pub non_perfect_cutoffs: u64, pub q_non_perfect_cutoffs: u64, pub pvs_full_window_searches: u64, pub pvs_zero_window_searches: u64, pub pvs_rejected_searches: u64, pub snmp_attempts: u64, pub snmp_accepted: u64, pub snmp_rejected: u64, pub nmp_attempts: u64, pub nmp_accepted: u64, pub nmp_rejected: u64, pub lmp_accepted: u64, pub lmp_rejected: u64, pub razoring_attempts: u64, pub razoring_accepted: u64, pub razoring_rejected: u64, pub q_score_pruning_accepted: u64, pub q_score_pruning_rejected: u64, pub q_futility_pruning_accepted: u64, pub q_futility_pruning_rejected: u64, pub tt_added: u64, pub tt_hits: u64, pub tt_misses: u64, pub tt_legal_hashmoves: u64, pub tt_illegal_hashmoves: u64, pub ktable_legal_moves: u64, pub ktable_illegal_moves: u64, pub cmtable_legal_moves: u64, pub cmtable_illegal_moves: u64, pub phtable_added: u64, pub phtable_hits: u64, pub phtable_misses: u64, pub movegen_hash_move_stages: u64, pub movegen_captures_stages: u64, pub movegen_killers_stages: u64, pub movegen_counters_stages: u64, pub movegen_quiets_stages: u64, pub result_hash: u16,
}

Fields§

§time: f32§nodes_count: u64§q_nodes_count: u64§leafs_count: u64§q_leafs_count: u64§beta_cutoffs: u64§q_beta_cutoffs: u64§q_perfect_cutoffs: u64§non_perfect_cutoffs: u64§q_non_perfect_cutoffs: u64§pvs_full_window_searches: u64§pvs_zero_window_searches: u64§pvs_rejected_searches: u64§snmp_attempts: u64§snmp_accepted: u64§snmp_rejected: u64§nmp_attempts: u64§nmp_accepted: u64§nmp_rejected: u64§lmp_accepted: u64§lmp_rejected: u64§razoring_attempts: u64§razoring_accepted: u64§razoring_rejected: u64§q_score_pruning_accepted: u64§q_score_pruning_rejected: u64§q_futility_pruning_accepted: u64§q_futility_pruning_rejected: u64§tt_added: u64§tt_hits: u64§tt_misses: u64§tt_legal_hashmoves: u64§tt_illegal_hashmoves: u64§ktable_legal_moves: u64§ktable_illegal_moves: u64§cmtable_legal_moves: u64§cmtable_illegal_moves: u64§phtable_added: u64§phtable_hits: u64§phtable_misses: u64§movegen_hash_move_stages: u64§movegen_captures_stages: u64§movegen_killers_stages: u64§movegen_counters_stages: u64§movegen_quiets_stages: u64§result_hash: u16

Trait Implementations§

source§

impl Default for BenchmarkResult

source§

fn default() -> BenchmarkResult

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.