pub struct HybridEvaluationResult {
pub final_evaluation: f32,
pub nnue_evaluation: Option<EvaluationComponent>,
pub pattern_evaluation: Option<EvaluationComponent>,
pub tactical_evaluation: Option<EvaluationComponent>,
pub strategic_evaluation: Option<EvaluationComponent>,
pub complexity_score: f32,
pub game_phase: GamePhase,
pub confidence_score: f32,
pub blend_weights: BlendWeights,
pub evaluation_time_ms: u64,
pub from_cache: bool,
}Expand description
Comprehensive hybrid evaluation result
Fields§
§final_evaluation: f32Final blended evaluation
nnue_evaluation: Option<EvaluationComponent>NNUE evaluation component
pattern_evaluation: Option<EvaluationComponent>Pattern evaluation component
tactical_evaluation: Option<EvaluationComponent>Tactical evaluation component
strategic_evaluation: Option<EvaluationComponent>Strategic evaluation component
complexity_score: f32Position complexity score (0.0 to 1.0)
game_phase: GamePhaseDetected game phase
confidence_score: f32Confidence in the final evaluation (0.0 to 1.0)
blend_weights: BlendWeightsWeights used for blending
evaluation_time_ms: u64Total evaluation time in milliseconds
from_cache: boolWhether result came from cache
Trait Implementations§
Source§impl Clone for HybridEvaluationResult
impl Clone for HybridEvaluationResult
Source§fn clone(&self) -> HybridEvaluationResult
fn clone(&self) -> HybridEvaluationResult
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 moreAuto Trait Implementations§
impl Freeze for HybridEvaluationResult
impl RefUnwindSafe for HybridEvaluationResult
impl Send for HybridEvaluationResult
impl Sync for HybridEvaluationResult
impl Unpin for HybridEvaluationResult
impl UnwindSafe for HybridEvaluationResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more