pub struct BenchmarkResult {
Show 44 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 perfect_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 static_null_move_pruning_attempts: u64, pub static_null_move_pruning_accepted: u64, pub static_null_move_pruning_rejected: u64, pub null_move_pruning_attempts: u64, pub null_move_pruning_accepted: u64, pub null_move_pruning_rejected: u64, pub late_move_pruning_accepted: u64, pub late_move_pruning_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 killers_table_legal_moves: u64, pub killers_table_illegal_moves: u64, pub pawn_hashtable_added: u64, pub pawn_hashtable_hits: u64, pub pawn_hashtable_misses: u64, pub move_generator_hash_move_stages: u64, pub move_generator_captures_stages: u64, pub move_generator_killers_stages: u64, pub move_generator_quiet_moves_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§perfect_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§static_null_move_pruning_attempts: u64§static_null_move_pruning_accepted: u64§static_null_move_pruning_rejected: u64§null_move_pruning_attempts: u64§null_move_pruning_accepted: u64§null_move_pruning_rejected: u64§late_move_pruning_accepted: u64§late_move_pruning_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§killers_table_legal_moves: u64§killers_table_illegal_moves: u64§pawn_hashtable_added: u64§pawn_hashtable_hits: u64§pawn_hashtable_misses: u64§move_generator_hash_move_stages: u64§move_generator_captures_stages: u64§move_generator_killers_stages: u64§move_generator_quiet_moves_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 Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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.